This repository has been archived by the owner on Sep 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.47 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
{
"name": "genomic-incidence-tracker",
"version": "0.0.1",
"description": "Visualisation app for the seattle flu project",
"main": "index.js",
"author": "James Hadfield, Anotonio Solano, Trevor Bedford",
"license": "AGPL-3.0-only",
"repository": "github:seattleflu/genomic-incidence-tracker",
"engines": {
"node": "11.11.x",
"npm": "6.7.x"
},
"scripts": {
"develop": "node server/index.js develop --verbose",
"build": "node server/index.js build --verbose",
"view": "node server/index.js view --verbose",
"start": "npm run develop"
},
"dependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"argparse": "^1.0.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.5",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"compression": "^1.7.4",
"compression-webpack-plugin": "^2.0.0",
"csv-parse": "^4.4.1",
"d3-axis": "^1.0.12",
"d3-color": "^1.2.3",
"d3-geo": "^1.11.3",
"d3-scale": "^3.0.0",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.4.0",
"d3-shape": "^1.3.5",
"d3-transition": "^1.2.0",
"express": "^4.16.4",
"express-naked-redirect": "^0.1.3",
"express-static-gzip": "^1.1.3",
"heroku-ssl-redirect": "0.0.4",
"jsonwebtoken": "^8.5.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.4.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.2",
"react-redux": "^6.0.1",
"react-select": "^2.4.2",
"redux": "^4.0.1",
"redux-devtools": "^3.5.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"styled-components": "^4.2.0",
"webpack": "^4.29.6"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-defaults": "^7.0.1",
"eslint-plugin-filenames": "^0.1.2",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-react-hooks": "^1.6.0",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-dev-middleware": "^3.6.1",
"webpack-hot-middleware": "^2.24.3"
}
}