-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
196 lines (196 loc) · 7.02 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
{
"name": "cpdbv2Mobile",
"private": true,
"version": "0.0.1",
"description": "Chicago Police Data Project mobile version",
"main": "",
"scripts": {
"clean": "rimraf dist/*",
"dist": "WEBPACK_ENV=${WEBPACK_ENV:-production} webpack --env=dist --bail",
"lint": "eslint ./src ./test ./integration-test --ext .jsx --ext .js",
"posttest": "npm run lint",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"serve": "node server.js --env=dev",
"serve:dist": "node server.js --env=dist",
"start": "node server.js --env=dev",
"test": "karma start --env=test",
"integration-test": "WEBPACK_ENV=integration-test node nightwatch.js",
"integration-test-wdio": "WEBPACK_ENV=integration-test wdio wdio.conf.js",
"itest": "yarn integration-test",
"wtest": "yarn integration-test-wdio",
"ci-test": "karma start --reporters mocha,coverage,coveralls --env=test",
"test-watch": "karma start --no-single-run --reporters mocha --env=test",
"docker-build": "sed -e \"s/{{DESKTOP_SERVER_NAME}}/$DESKTOP_SERVER_NAME/\" nginx.conf.template > nginx.conf && docker build -t cpdbdev/mobile-frontend:latest . && rm nginx.conf",
"docker-run": "docker run --rm -d --name mobile-frontend -p $MOBILE_PORT:80 cpdbdev/mobile-frontend:latest",
"docker-kill": "docker kill mobile-frontend",
"test-nginx": "mocha test_nginx.js",
"local-test-nginx": "export DESKTOP_SERVER_NAME=cpdp.co && export MOBILE_PORT=80 && export MOBILE_DOMAIN=localhost && yarn docker-build && yarn docker-run && yarn test-nginx ; yarn docker-kill"
},
"repository": "",
"keywords": [],
"author": "CPDB Team",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.10.5",
"@types/react": "^16.3.17",
"@wdio/cli": "^5.12.4",
"@wdio/concise-reporter": "^5.12.1",
"@wdio/dot-reporter": "^5.12.1",
"@wdio/local-runner": "^5.12.4",
"@wdio/mocha-framework": "^5.12.1",
"@wdio/selenium-standalone-service": "^5.12.1",
"@wdio/spec-reporter": "^5.12.1",
"@wdio/sync": "^5.12.3",
"azure-storage": "^2.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bluebird": "^3.5.2",
"body-parser": "^1.15.2",
"bower-webpack-plugin": "^0.1.9",
"browser-sync": "^2.26.10",
"chai": "^3.2.0",
"chromedriver": "^81.0.0",
"clean-webpack-plugin": "^0.1.19",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.1",
"cross-spawn": "^4.0.0",
"css-loader": "^1.0.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"es6-promise": "^4.2.2",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-mocha": "^6.2.1",
"eslint-plugin-react": "^7.16.0",
"express": "^4.14.0",
"faker": "^3.1.0",
"file-loader": "^4.1.0",
"glob": "^7.0.0",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"json-loader": "^0.5.4",
"karma": "5.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "2.0.1",
"karma-coveralls": "^2.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"minimist": "^1.2.0",
"mocha": "^7.0.1",
"nightwatch": "^1.3.4",
"node-sass": "^4.12.0",
"null-loader": "^0.1.1",
"open": "^6.4.0",
"phantomjs-prebuilt": "^2.0.0",
"postcss": "^7.0.17",
"postcss-loader": "^3.0.0",
"react-addons-css-transition-group": "^15.4.2",
"react-stub-context": "^0.7.0",
"react-test-renderer": "16.3.0",
"recursive-readdir-sync": "^1.0.6",
"redux-mock-store": "^1.1.4",
"request": "^2.88.0",
"rimraf": "^2.4.3",
"rosie": "^1.3.0",
"sass-loader": "^7.1.0",
"should": "^9.0.0",
"sinon": "^6.3.4",
"sinon-stub-promise": "^3.0.1",
"style-loader": "^0.23.1",
"timekeeper": "0.0.5",
"url-loader": "^0.5.6",
"webpack": "^4.42.1",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"axios": "^0.19.0",
"classnames": "^2.2.5",
"clipboard": "^1.7.1",
"connected-react-router": "^6.6.1",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"d3": "^3.4.11",
"d3-collection": "^1.0.7",
"d3-scale": "^3.0.0",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"d3-tip": "^0.9.1",
"draft-js": "^0.11.3",
"flux": "^2.1.1",
"growl": "^1.10.5",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.6",
"hashids": "^1.0.2",
"leaflet": "^1.0.3",
"lodash": "^4.17.15",
"mapbox-gl": "^1.7.0",
"mapbox-gl-multitouch": "^1.0.3",
"marked": "^0.7.0",
"memoize-one": "^5.1.1",
"moment": "^2.13.0",
"muuri": "^0.7.1",
"normalize.css": "^4.0.0",
"numeral": "^2.0.6",
"object-assign": "^4.1.0",
"pluralize": "^2.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "16.9.0",
"react-clamp-lines": "^1.1.0",
"react-device-detect": "^1.6.1",
"react-dom": "16.9.0",
"react-helmet-async": "^1.0.4",
"react-infinite-scroller": "^1.2.4",
"react-leaflet": "^1.1.6",
"react-lines-ellipsis": "^0.14.1",
"react-markdown": "^4.3.1",
"react-modal": "^3.11.1",
"react-redux": "^6.0.1",
"react-router-dom": "^5.1.2",
"react-scroll": "^1.8.1",
"react-toastify": "5.4.0",
"redux": "^4.0.5",
"redux-actions": "^0.10.0",
"redux-axios-middleware": "^4.0.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.4",
"should-sinon": "^0.0.6",
"superagent": "^3.7.0",
"swiper": "^4.4.6",
"web-animations-js": "^2.3.1",
"webpack-cli": "^3.3.6",
"yargs-parser": "^5.0.0"
},
"resolutions": {
"webpack/acorn": "7.1.1",
"mapbox-gl/**/minimist": "0.2.1",
"nightwatch/**/minimist": "0.2.1"
}
}