-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "rolodex_app-react",
"version": "0.1.0",
"private": true,
"devDependencies": {
"react-scripts": "1.0.7"
},
"dependencies": {
"es6-promise": "^4.1.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"milligram": "^1.3.0",
"normalize.css": "^7.0.0",
"prettier": "^1.4.4",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"redux": "^3.7.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --no-semi --write \"src/**/*.js\"",
"ship": "react-scripts build && mv build/index.html build/200.html && surge ./build --domain htps-rolodex-react.surge.sh",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
}
}