forked from interra/311-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.93 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
{
"name": "datavizuals",
"version": "0.1.0",
"private": true,
"dependencies": {
"apollo-cache-inmemory": "^0.2.0-rc.4",
"apollo-client": "^2.0.0-rc.7",
"apollo-link-http": "^1.1.0",
"chart.js": "^2.7.3",
"chroma-js": "^1.3.4",
"classnames": "^2.2.5",
"d3": "^4.11.0",
"font-awesome": "^4.7.0",
"graphql": "^0.11.7",
"graphql-tag": "^2.5.0",
"history": "^4.7.2",
"leaflet": "^1.2.0",
"leaflet.markercluster": "^1.2.0",
"lodash": "^4.17.11",
"moment": "^2.20.1",
"node-sass": "^5.0.0",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.1",
"prop-types": "^15.6.0",
"query-string": "^5.0.1",
"react": "^16.1.1",
"react-apollo": "^2.0.1",
"react-bootstrap": "^0.31.5",
"react-chartjs-2": "^2.6.4",
"react-d3-core": "^1.3.9",
"react-datepicker": "^0.64.0",
"react-dom": "^16.1.1",
"react-fontawesome": "^1.6.1",
"react-leaflet": "^1.7.5",
"react-leaflet-choropleth": "^2.0.0",
"react-leaflet-control": "^1.4.0",
"react-leaflet-markercluster": "^1.1.7",
"react-modal": "^3.1.8",
"react-nvd3": "^0.5.7",
"react-scripts": "^2.0.5",
"react-select": "^1.0.0-rc.10",
"react-table": "^6.7.4",
"tag": "^0.3.0",
"underscore": "^1.8.3"
},
"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": "rm src/stylesheets/*.css && npm-run-all -p watch-css start-js --env.production=false",
"build": "rm src/stylesheets/*.css && npm run build-css && react-scripts build --env.production=true",
"deploy": "npm run build && rsync -avh build/ [email protected]:~/tmp/philly311_latest/",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}