-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.7 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
{
"name": "sims-toolkit-tauri-shell",
"private": true,
"version": "0.1.7",
"type": "module",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev:web": "vite --config web/vite.config.ts",
"build:web": "vite build --config web/vite.config.ts",
"tauri:dev": "python eng/dotnet.py ensure && python eng/dotnet.py build && npm run publish:backend && tauri dev",
"publish:backend": "powershell -NoProfile -ExecutionPolicy Bypass -File eng/publish-backend.ps1",
"tauri:build": "powershell -NoProfile -ExecutionPolicy Bypass -File eng/build-shipping.ps1",
"style-lint": "tsx tools/style-lint/bin.ts",
"style-lint:strict": "tsx tools/style-lint/bin.ts --strict",
"style-lint:full": "tsx tools/style-lint/bin.ts --full",
"style-lint:since": "tsx tools/style-lint/bin.ts --since=master --strict",
"scan:full": "tsx tools/style-lint/bin.ts --full --strict",
"scan:report": "tsx tools/style-lint/bin.ts --full --strict --json --output=style-lint-report.json",
"test:web": "vitest run",
"test:web:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@fabianlars/tauri-plugin-oauth": "^2.0.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/supabase-js": "^2.107.0",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.542.0",
"motion": "^12.23.24",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.10.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0"
},
"lint-staged": {
"web/src/**/*.{ts,tsx}": "npx tsx tools/style-lint/bin.ts --strict"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.13",
"@tauri-apps/cli": "2.10.1",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "6.0.1",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"tailwindcss": "^4.1.13",
"tsx": "^4.23.1",
"typescript": "6.0.2",
"vite": "8.0.3",
"vitest": "^4.1.8"
},
"optionalDependencies": {
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3"
}
}