-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.84 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.84 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
{
"name": "obj",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test": "vitest",
"format": "oxfmt",
"format:check": "oxfmt --check",
"types": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@fontsource-variable/geist-mono": "^5.2.7",
"@fontsource-variable/nunito-sans": "^5.2.7",
"@hookform/resolvers": "^5.2.2",
"@nanostores/react": "^1.0.0",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-router": "^1.147.3",
"@tanstack/zod-form-adapter": "^0.42.1",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.5.0",
"@tauri-apps/plugin-log": "~2.8.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-stronghold": "^2.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.562.0",
"nanostores": "^1.1.0",
"next-themes": "^0.4.6",
"qrcode.react": "^4.2.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.0",
"react-pdf": "^10.3.0",
"shadcn": "^3.6.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-router-devtools": "^1.149.0",
"@tanstack/router-plugin": "^1.149.0",
"@tauri-apps/cli": "^2.9.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/ui": "^4.0.16",
"globals": "^17.0.0",
"jsdom": "^27.4.0",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"playwright": "^1.57.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tw-animate-css": "^1.4.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1",
"vitest": "^4.0.16"
}
}