-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.88 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
{
"name": "safety-monitoring",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start:dev": "vite --mode dev",
"build:dev": "tsc && vite build --mode dev",
"start:main": "vite --mode main",
"build:main": "tsc && vite build --mode main",
"start:experimental": "vite --mode experimental",
"build:experimental": "tsc && vite build --mode experimental",
"start:qa": "vite --mode qa",
"build:qa": "tsc && vite build --mode qa",
"start:production": "vite --mode production",
"build:production": "tsc && vite build --mode production"
},
"dependencies": {
"@mapbox/mapbox-gl-draw": "^1.4.3",
"@reduxjs/toolkit": "^1.9.1",
"@turf/turf": "^6.5.0",
"@types/geojson": "^7946.0.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.196",
"@types/mapbox__mapbox-gl-draw": "^1.4.6",
"@types/mapbox-gl": "^2.7.12",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.1",
"jwt-decode": "^4.0.0",
"mapbox-gl": "^2.15.0",
"oidc-client-ts": "^2.2.4",
"react": "^18.2.0",
"react-datepicker": "^6.1.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.42.1",
"react-i18next": "^13.0.3",
"react-map-gl": "^7.1.3",
"react-oidc-context": "^2.2.2",
"react-redux": "^8.0.5",
"react-router-dom": "^6.7.0",
"react-toastify": "^10.0.5",
"react-tooltip": "^5.8.3",
"recharts": "^2.12.2",
"styled-components": "^5.3.8",
"styled-normalize": "^8.0.7",
"wellknown": "^0.5.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-datepicker": "^4.19.6",
"@types/react-dom": "^18.0.9",
"@types/styled-components": "^5.1.26",
"@types/wellknown": "^0.5.1",
"@vitejs/plugin-react": "^4.3.0",
"prettier": "^2.8.3",
"typescript": "^4.9.3",
"vite": "^5.2.11"
}
}