-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
{
"name": "takeapledge-react",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:4000",
"dependencies": {
"axios": "^0.16.2",
"bootstrap": "^3.3.7",
"firebase": "^4.1.3",
"husky": "^0.14.3",
"lint-staged": "^4.0.1",
"lodash": "^4.17.4",
"prettier": "^1.5.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-avatar": "^2.3.0",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.6.1",
"react-fontawesome": "^1.6.1",
"react-motion": "^0.5.0",
"react-redux": "^5.0.5",
"react-router-dom": "^4.1.1",
"redux": "^3.7.0",
"redux-devtools-extension": "^2.13.2",
"redux-form": "^7.0.3",
"redux-logger": "^3.0.6",
"redux-observable": "^0.14.1",
"redux-thunk": "^2.2.0",
"rxjs": "^5.4.1",
"simple-react-forms": "^1.4.2"
},
"devDependencies": {
"enzyme": "^2.9.0",
"eslint": "^4.2.0",
"eslint-plugin-prettier": "^2.1.2",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"react-scripts": "1.0.7",
"react-test-renderer": "^15.6.1"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"start:api": "REACT_APP_API_MODE=API npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"test-js": "react-scripts test --env=jsdom ",
"test": "npm run build-css && npm run test-js",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}