-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "detroitjs.com",
"description": "Detroit JS Website",
"version": "2.0.0",
"author": "TJ <[email protected]>",
"dependencies": {
"axios": "^0.18.0",
"axios-jsonp": "^1.0.2",
"babel-plugin-transform-regenerator": "^6.26.0",
"gatsby": "^1.9.277",
"gatsby-link": "^1.6.46",
"gatsby-plugin-react-helmet": "^2.0.11",
"gatsby-plugin-styled-jsx": "^2.0.6",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react-helmet": "^5.2.0",
"shortid": "^2.2.13",
"styled-jsx": "^3.0.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
]
},
"scripts": {
"build": "gatsby build",
"serve": "gatsby serve",
"develop": "gatsby develop",
"precommit": "lint-staged",
"postcommit": "git update-index --again",
"test": "lint-staged"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"styled-components": "^3.4.6"
},
"repository": {
"url": "[email protected]:DetroitJS/detroitjs-com.git"
}
}