forked from decaporg/gatsby-starter-decap-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "gatsby-starter-netlify-cms",
"description": "Example Gatsby, and Netlify CMS project",
"version": "1.0.0",
"author": "Austin Green",
"dependencies": {
"bulma": "^0.6.0",
"gatsby": "^1.9.63",
"gatsby-link": "^1.6.21",
"gatsby-plugin-react-helmet": "^1.0.5",
"gatsby-plugin-sass": "^1.0.12",
"gatsby-plugin-sharp": "^1.6.18",
"gatsby-remark-images": "^1.5.18",
"gatsby-source-filesystem": "^1.5.5",
"gatsby-transformer-remark": "^1.7.17",
"react-load-script": "0.0.6",
"gatsby-transformer-sharp": "^1.6.13"
},
"keywords": ["gatsby"],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "npm run build:cms && npm run build:site",
"build:site": "gatsby build",
"build:cms": "cd cms && yarn && npm run build",
"develop": "gatsby develop",
"serve": "gatsby serve",
"_format": "prettier --trailing-comma es5 --no-semi --single-quote --write",
"format": "npm run format:src & npm run format:cms",
"format:src": "npm run _format 'src/**/*.js'",
"format:cms": "npm run _format 'cms/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prettier": "^1.7.4"
}
}