-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "nnb-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7",
"classnames": "^2.2.5",
"cloudinary": "^1.9.1",
"history": "^4.7.2",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"lodash": "^4.17.5",
"moment": "^2.19.3",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1",
"react": "^16.0.0",
"react-autosuggest": "^9.3.4",
"react-bootstrap": "^0.31.5",
"react-datepicker": "^0.60.2",
"react-dom": "^16.0.0",
"react-feather": "^1.0.8",
"react-modal": "^3.4.2",
"react-map-interaction": "https://github.com/hack4impact-uiuc/react-map-interaction/tarball/master",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.0.14",
"react-sidebar": "^2.3.2",
"react-toastify": "^4.0.0-rc.5",
"react-youtube": "^7.5.0",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"superagent": "^3.8.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": "npm-run-all -p watch-css start-js",
"build": "npm-run-all build-css build-js",
"start-js": "react-scripts start",
"build-js": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"devDependencies": {
"prettier": "1.7.4"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --no-semi --single-quote --write",
"git add"
]
}
}