-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "ridecontrol",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host localhost --port 4200",
"build": "tsc && vite build",
"check": "biome check . --error-on-warnings",
"fix": "biome check --write .",
"test": "bun test",
"tailwind:check": "bun scripts/check-tailwind.ts",
"ci": "biome check . --error-on-warnings && bun run tailwind:check && bun test && tsc --noEmit && vite build",
"deploy": "bun run build && wrangler deploy",
"preview": "vite preview --host localhost --port 4200"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@garmin/fitsdk": "^21.208.0",
"@tailwindcss/vite": "^4.3.3",
"@tanstack/react-form": "^1.33.2",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-store": "^0.11.0",
"@tanstack/react-virtual": "^3.14.7",
"@vitejs/plugin-react": "^6.0.3",
"fflate": "^0.8.3",
"leaflet": "^1.9.4",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"tailwindcss": "^4.3.3",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.5",
"@cloudflare/vite-plugin": "^1.46.0",
"@tailwindcss/language-server": "^0.16.0",
"@types/bun": "^1.3.14",
"@types/leaflet": "^1.9.21",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/web-bluetooth": "^0.0.21",
"@xmldom/xmldom": "^0.9.10",
"fake-indexeddb": "^6.2.5",
"typescript": "^7.0.2",
"ultracite": "^7.9.4",
"vite": "^8.1.5",
"wrangler": "^4.113.0"
}
}