forked from PrototypeInteractive/gatsby-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 2.01 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "gatsby-react-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"start": "node server.js",
"gh-pages": "gatsby build --prefix-paths && gh-pages -d public",
"lint": "node_modules/.bin/eslint src --fix",
"dev": "(shx --silent rm -rf public || shx true) && gatsby develop",
"server": "cross-env NODE_ENV=development DEBUG=api nodemon server.js"
},
"author": "Prototype Interactive",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.1",
"compression": "^1.7.4",
"debug": "^4.1.1",
"express": "^4.17.1",
"helmet": "^3.18.0",
"react-helmet": "^5.2.1",
"serve-static": "^1.14.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"autoprefixer": "^9.6.0",
"bootstrap": "^4.3.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"gatsby": "^2.9.4",
"gatsby-plugin-google-analytics": "^2.0.21",
"gatsby-plugin-postcss": "^2.0.7",
"gatsby-plugin-postcss-sass": "^1.0.22",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-source-filesystem": "^2.0.39",
"gatsby-transformer-json": "^2.1.11",
"gh-pages": "^2.0.1",
"husky": "^2.4.1",
"postcss-preset-env": "^6.6.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"shx": "^0.3.2",
"svg-sprite-loader": "^4.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrototypeInteractive/gatsby-react-boilerplate.git"
},
"bugs": {
"url": "https://github.com/PrototypeInteractive/gatsby-react-boilerplate/issues"
},
"homepage": "https://github.com/PrototypeInteractive/gatsby-react-boilerplate#readme"
}