-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.86 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.86 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "Crossroads",
"version": "1.0.0",
"description": "Spatiotemporal data visualization platform",
"main": "index.js",
"scripts": {
"start": "nodemon api/index.js --exec babel-node",
"api-tests":
"./node_modules/.bin/mocha --compilers js:babel-core/register \"api/**/*.test.js\"",
"serve-app":
"webpack --config ./webpack.dev.config.js --progress --colors",
"build-app":
"webpack --config ./webpack.prod.config.js --progress --colors",
"migrate-db": "node db/index.js",
"build-prod": "bash ./utils/build-prod.sh",
"start-pm2-dev": "pm2 start ecosystem.config.js --env staging",
"start-prod": "pm2 start ecosystem.config.js --env production"
},
"repository": "https://github.com/datateam/crossroads.git",
"author": "Trey Hakanson and Dan Arters",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.18.1",
"babel-polyfill": "^6.23.0",
"body-parser": "^1.17.2",
"chart.js": "^2.6.0",
"clipper-lib": "^6.2.1",
"crossfilter": "^1.3.12",
"ejs": "^2.5.7",
"express": "^4.15.2",
"gifshot": "^0.3.2",
"history": "^4.6.1",
"leaflet": "^1.0.3",
"leaflet.heat": "^0.2.0",
"leaflet.markercluster": "^1.0.5",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mapbox-gl": "^0.36.0",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"papaparse": "^4.3.3",
"pg": "^6.1.5",
"prop-types": "^15.6.0",
"rc-slider": "^7.0.2",
"react": "^15.5.4",
"react-addons-shallow-compare": "^15.5.2",
"react-chartjs-2": "^2.1.0",
"react-color": "^2.13.0",
"react-dates": "^12.1.1",
"react-dom": "^15.5.4",
"react-icons": "^2.2.5",
"react-redux": "^4.4.1",
"react-router": "^2.0.0",
"react-toggle": "^4.0.1",
"redux": "^3.3.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"socket.io": "^1.7.3"
},
"devDependencies": {
"pg-promise": "^7.0.3",
"babel-cli": "^6.24.1",
"babel-core": "^6.5.1",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.24.1",
"css-loader": "^0.23.1",
"expect": "^1.14.0",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"react-addons-test-utils": "^0.14.7",
"redux-logger": "^3.0.1",
"sass-loader": "^3.1.2",
"sass-variable-loader": "^0.1.2",
"style-loader": "^0.6.1",
"url-loader": "^0.5.8",
"webpack": "^1.15.0"
}
}