-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
75 lines (75 loc) · 2.24 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
{
"name": "climate-map",
"version": "1.0.0",
"main": "index.html",
"repository": "[email protected]:ButtonProgram/climate-map.git",
"license": "MIT",
"dependencies": {
"@esri/arcgis-to-geojson-utils": "^1.3.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.1.9",
"@turf/boolean-within": "^6.3.0",
"@turf/helpers": "^6.3.0",
"@turf/meta": "^6.3.0",
"@types/dompurify": "^2.2.2",
"@types/jest": "^27.4.0",
"@types/mapbox-gl": "^2.3.0",
"@types/node": "^17.0.8",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"autoprefixer": "^10.2.6",
"babel-polyfill": "^6.26.0",
"chart.js": "^3.3.2",
"cli-real-favicon": "^0.0.8",
"dompurify": "^2.2.9",
"js-sha256": "^0.9.0",
"mapbox-gl": "^2.3.0",
"micro-observables": "^1.7.0",
"ol": "^6.5.0",
"ol-mapbox-style": "^6.3.2",
"postcss-preset-env": "^7.2.3",
"react": "^17.0.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-router-dom": "5",
"react-scripts": "5.0.0",
"typescript": "~4.5.4",
"whatwg-fetch": "^3.6.2",
"worker-loader": "^3.0.8"
},
"scripts": {
"start": "ln -sf mapbox_map.ts src/map/map.ts && react-scripts start",
"start-ol": "ln -sf ol_map.ts src/map/map.ts && react-scripts start",
"build": "rm -rf build/ && ln -sf mapbox_map.ts src/map/map.ts && react-scripts build",
"build-ol": "rm -rf build/ && ln -sf ol_map.ts src/map/map.ts && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"favicon": "real-favicon generate faviconDescription.json faviconData.json favicon/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie 11",
"not chrome < 51",
"not safari < 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/chart.js": "^2.9.32",
"@types/react-router-dom": "^5.1.7"
}
}