-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
93 lines (93 loc) · 2.33 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
{
"name": "covid-atlas",
"version": "1.0.0",
"description": "COVID Atlas [v2]",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/GeoDaCenter/covid.git"
},
"author": "Spatial@UChicago <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GeoDaCenter/covid/issues"
},
"homepage": "https://theuscovidatlas.org",
"dependencies": {
"@deck.gl/core": "8.5.8",
"@deck.gl/extensions": "8.5.8",
"@deck.gl/geo-layers": "8.5.8",
"@deck.gl/layers": "8.5.8",
"@deck.gl/mapbox": "8.5.8",
"@deck.gl/mesh-layers": "8.5.8",
"@deck.gl/react": "8.5.8",
"@google-cloud/bigquery": "^5.7.1",
"@material-ui/core": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"comlink": "^4.3.1",
"d3-dsv": "^2.0.0",
"d3-scale": "^3.2.0",
"file-saver": "^2.0.5",
"jszip": "^3.6.0",
"lodash": "^4.17.20",
"pbf": "^3.2.1",
"ramda": "^0.28.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga": "^3.3.0",
"react-google-recaptcha": "^2.1.0",
"react-map-gl": "5.2.11",
"react-markdown": "^5.0.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"recharts": "^2.1.3",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"remark-gfm": "^1.0.0",
"styled-components": "^5.2.1"
},
"scripts": {
"start": "react-scripts start",
"build-sw": "node ./src/sw-build.js",
"build": "react-scripts build && npm run build-sw",
"netlify-build": "npm run build && cd build && cat _redirects",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.js?(x)"
],
"rules": {
"react-hooks/exhaustive-deps": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"dayjs": "^1.10.6",
"source-map-explorer": "^2.5.2",
"workbox-build": "^6.1.5",
"worker-loader": "^3.0.6"
}
}