-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.04 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
61
62
63
64
65
{
"name": "waaroverheid",
"version": "0.1.0",
"homepage": "https://waaroverheid.github.io",
"private": true,
"dependencies": {
"es6-symbol": "^3.1.1",
"history": "^4.7.2",
"iterators-polyfill": "^1.0.2",
"js-levenshtein": "^1.1.3",
"leaflet": "^1.2.0",
"lodash": "^4.17.4",
"moment": "^2.20.1",
"node-sass-chokidar": "^0.0.3",
"npm-run-all": "^4.1.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dates": "^16.0.2",
"react-dom": "^16.2.0",
"react-infinite-scroller": "^1.1.3",
"react-input-range": "^1.3.0",
"react-leaflet": "^1.7.7",
"react-redux": "^5.0.6",
"react-responsive-modal": "^2.0.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.0.17",
"recharts": "^1.0.0-beta.9",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"url-search-params-polyfill": "^2.0.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"build-site-css": "node-sass-chokidar public/website/ -o public/website/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"watch-site-css": "npm run build-site-css && node-sass-chokidar public/website -o public/website/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css watch-site-css start-js",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js build-site-css",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"precommit": "lint-staged"
},
"devDependencies": {
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "1.10.2",
"pretty-quick": "^1.3.0"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --tab-width=4 --print-width=120",
"git add"
],
"*.scss": [
"prettier --write --single-quote --tab-width=4 --print-width=120",
"git add"
]
}
}