-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.45 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.45 KB
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
{
"name": "openmower-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"genrpc": "scripts/generate-rpc-client.ts openrpc.json > src/lib/rpc.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@json-schema-tools/dereferencer": "^1.6.3",
"@mapbox/mapbox-gl-draw": "^1.5.1",
"@mapbox/mapbox-gl-draw-static-mode": "^1.0.1",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/material-nextjs": "^7.3.9",
"@remoteoss/json-schema-form": "^1.2.11",
"@turf/area": "^7.3.4",
"@turf/bbox": "^7.3.4",
"@turf/boolean-point-in-polygon": "^7.3.4",
"@turf/difference": "^7.3.4",
"@turf/helpers": "^7.3.4",
"@turf/kinks": "^7.3.5",
"@turf/nearest-point-on-line": "^7.3.4",
"@turf/point-on-feature": "^7.3.4",
"@turf/polygon-to-line": "^7.3.4",
"@turf/polygonize": "^7.3.4",
"@turf/union": "^7.3.4",
"@turf/unkink-polygon": "^7.3.5",
"@types/json-schema-merge-allof": "^0.6.5",
"@types/mapbox__mapbox-gl-draw": "^1.4.9",
"bson": "^7.2.0",
"geodesy": "^2.4.0",
"immer": "^11.1.4",
"json-schema-merge-allof": "^0.8.1",
"lodash.merge": "^4.6.2",
"lucide-react": "^0.577.0",
"maplibre-gl": "^5.21.0",
"maplibre-react-components": "^0.2.6",
"mqtt": "^5.15.0",
"next": "16.2.1",
"react": "19.2.4",
"react-dialog-async": "^3.2.0",
"react-dom": "19.2.4",
"react-hook-form": "^7.71.2",
"sweepline-intersections": "^2.0.1",
"use-immer": "^0.11.0",
"yaml": "^2.8.3",
"zod": "^4.3.6",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@open-rpc/schema-utils-js": "^2.2.1",
"@open-rpc/typings": "^1.13.1",
"@types/geodesy": "^2.2.8",
"@types/geojson": "^7946.0.16",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^25",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/utm": "^1.1.4",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.1",
"typescript": "^5"
},
"overrides": {
"mapbox-gl": "npm:maplibre-gl@^5.20.1",
"@mapbox/mapbox-gl-draw": "^1.5.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}