-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.13 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
{
"name": "stockwater-vite",
"private": "true",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "node --max_old_space_size=16384 ./node_modules/vite/bin/vite.js build",
"preview": "vite preview",
"lint": "eslint \"src/**/*.{js,jsx}\"",
"lint:fix": "eslint \"src/**/*.{js,jsx}\" --fix",
"deploy": "gh-pages -d dist",
"build-deploy": "npm run build && npm run deploy",
"parse": "node ./src/script/handleGeoJsonFilter.js",
"file-to-folder": "node ./src/script/handleSeriesFiles.js",
"deploy-pipeline": "npm run file-to-folder && npm run parse && npm run minify_geojson && npm run build-deploy",
"minify_geojson": "sh ./src/script/minify_geojson.sh"
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"@react-leaflet/core": "1.1.0",
"@reduxjs/toolkit": "^1.8.2",
"@stitches/react": "^1.2.8",
"@svgr/core": "^6.2.1",
"@turf/boolean-point-in-polygon": "^6.5.0",
"chart.js": "^3.7.1",
"chartjs-adapter-date-fns": "^2.0.0",
"chartjs-plugin-zoom": "^1.2.1",
"d3": "^7.4.4",
"date-fns": "^2.28.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.5.3",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"rc-util": "^5.21.0",
"react": "^17.0.2",
"react-chartjs-2": "^4.1.0",
"react-dom": "^17.0.2",
"react-error-boundary": "^4.0.11",
"react-leaflet": ">=3.1.0 <3.2.0",
"react-leaflet-markercluster": "3.0.0-rc1",
"react-loader-spinner": "^5.3.4",
"react-redux": "^8.0.2",
"react-router-dom": "^6.14.2",
"react-select": "^5.7.3",
"react-tooltip": "^4.2.21",
"rollup-plugin-geojson": "^0.1.0",
"rollup-plugin-visualizer": "^5.9.2"
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.6",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"prettier": "2.7.1",
"vite": "^3.0.9",
"vite-plugin-chunk-split": "^0.4.7"
}
}