-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1 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": "getshitdone",
"version": "0.1.0",
"private": true,
"homepage": "https://nargonath.github.io/getshitdone",
"dependencies": {
"enzyme": "^2.9.1",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"prettier": "^1.5.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"styled-components": "^2.1.0"
},
"devDependencies": {
"cross-env": "^5.0.1",
"react-scripts": "1.0.8"
},
"scripts": {
"precommit": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "cross-env NODE_PATH=src/ react-scripts start",
"build": "cross-env NODE_PATH=src/ react-scripts build",
"test": "cross-env NODE_PATH=src/ react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write --print-width 110 --trailing-comma es5",
"git add"
]
}
}