-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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": "sphere",
"private": true,
"version": "0.5.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .tsx,.ts src/",
"lint:fix": "eslint --ext .tsx,.ts --fix src/",
"test": "vitest run",
"test:watch": "vitest watch",
"coverage": "vitest run --coverage",
"tauri": "tauri"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@mantine/core": "^5.10.5",
"@mantine/form": "^5.10.5",
"@mantine/hooks": "^5.10.5",
"@mantine/spotlight": "^5.10.5",
"@mapbox/mapbox-gl-draw": "^1.3.0",
"@reduxjs/toolkit": "^1.9.5",
"@tabler/icons": "^1.111.0",
"@tanstack/react-table": "^8.7.0",
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-http": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@turf/helpers": "^6.5.0",
"@turf/turf": "^6.5.0",
"@visx/group": "^3.0.0",
"@visx/scale": "^3.0.0",
"@visx/shape": "^3.0.0",
"date-fns": "^2.30.0",
"maplibre-gl": "^4.0.2",
"pino": "^8.19.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-map-gl": "^7.1.7",
"react-redux": "^8.0.5",
"supercluster": "^8.0.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.2.0",
"@types/mapbox__mapbox-gl-draw": "^1.3.3",
"@types/node": "^20.11.20",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/supercluster": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"typescript": "^5.3.3",
"vitest": "^3.0.4",
"vite": "^6.0.0"
}
}