-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.05 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "doves-dataviewer",
"private": true,
"version": "3.0.0",
"description": "Open-source, offline-first motorsport telemetry viewer (Dove's DataViewer / LapWing).",
"license": "GPL-3.0-or-later",
"author": "TheAngryRaven",
"homepage": "https://lapwingdata.com",
"repository": {
"type": "git",
"url": "git+https://github.com/TheAngryRaven/DovesDataViewer.git"
},
"bugs": {
"url": "https://github.com/TheAngryRaven/DovesDataViewer/issues"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"coverage:badge": "bun scripts/coverage-badge.mjs",
"coverage:summary": "bun scripts/coverage-summary.mjs",
"i18n:seed": "bun scripts/seed-translations.mjs",
"typecheck": "tsc -b"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@supabase/supabase-js": "^2.95.3",
"@tanstack/react-query": "^5.83.0",
"@tauri-apps/api": "^2.9.0",
"@tauri-apps/plugin-opener": "^2.5.0",
"@types/leaflet": "^1.9.21",
"@types/web-bluetooth": "^0.0.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fix-webm-duration": "^1.0.6",
"i18next": "^26.3.1",
"jszip": "^3.10.1",
"leaflet": "^1.9.4",
"lucide-react": "^0.462.0",
"ml-savitzky-golay": "^5.0.0",
"mp4-muxer": "^5.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^17.0.8",
"react-resizable-panels": "^2.1.9",
"react-router-dom": "^6.30.1",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"vite-plugin-pwa": "^1.2.0"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.16.5",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^4.1.7",
"autoprefixer": "^10.4.21",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fake-indexeddb": "^6.2.5",
"globals": "^15.15.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^5.4.19",
"vitest": "^4.1.6"
},
"optionalDependencies": {
"@perchwerks/eye-in-the-sky": "0.5.0"
}
}