Files
explorer.fullstack.cash/package.json
T
GatsbyJS Bot 758f227b68 feat(gatsby-theme-notes): Implement initial version of notes theme (#14066)
This implements the first pass of gatsby-theme-notes.

It's still a WIP and Chris will be following with GraphQL schema
updates. Eventually we will want to handle directory listing via
GraphQL queries as well.

This also bumps dependencies of all existing themes.
2019-05-15 19:00:37 +00:00

31 lines
769 B
JSON

{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"gatsby": "^2.4.6",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"prettier": "^1.17.1"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}