forked from GatsbyCentral/gatsby-starter-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gatsby-starter-wordpress",
"description": "Gatsby v2 starter for WordPress",
"version": "0.1.0",
"author": "GatsbyCentral.com",
"dependencies": {
"bulma": "^0.7.5",
"gatsby": "^2.18.1",
"gatsby-awesome-pagination": "^0.3.3",
"gatsby-plugin-lodash": "^3.1.7",
"gatsby-plugin-netlify": "^2.1.12",
"gatsby-plugin-purgecss": "^4.0.1",
"gatsby-plugin-react-helmet": "^3.1.7",
"gatsby-plugin-sass": "^2.1.14",
"gatsby-plugin-sharp": "^2.2.21",
"gatsby-remark-images": "^3.1.21",
"gatsby-source-filesystem": "^2.1.22",
"gatsby-source-wordpress": "^3.1.31",
"gatsby-transformer-remark": "^2.6.22",
"gatsby-transformer-sharp": "^2.2.14",
"lodash": "^4.17.5",
"node-sass": "^4.12.0",
"parcel-bundler": "^1.12.3",
"prop-types": "^15.6.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-helmet": "^5.2.1",
"uuid": "^3.3.3"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"start": "npm run develop",
"clean": "rimraf .cache public",
"build": "npm run clean && gatsby build",
"develop": "npm run clean && gatsby develop",
"serve": "gatsby serve",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write \"{gatsby-*.js,src/**/*.js}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true
}
}