mirror of
https://github.com/fullstack-cash/explorer.fullstack.cash.git
synced 2026-09-21 16:52:05 -07:00
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.
31 lines
769 B
JSON
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"
|
|
}
|
|
}
|