-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
{
"name": "create-tauri-react-app",
"version": "0.2.0",
"type": "module",
"license": "MIT",
"bin": {
"create-tauri-react-app": "./bin/create.js"
},
"scripts": {
"postinstall": "tsx ./scripts/setup.ts",
"dev": "bun ./scripts/start-dev",
"dev:vite": "vite",
"devtools": "react-devtools",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"fix": "ultracite fix",
"check": "ultracite check",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"setup": "tsx ./scripts/setup.ts"
},
"dependencies": {
"@inquirer/prompts": "^8.0.0",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-log": "^2.7.1",
"@tauri-apps/plugin-opener": "^2.5.2",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.555.0",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.0.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@tauri-apps/cli": "^2.9.5",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/bun": "^1.3.3",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/ui": "^4.0.14",
"babel-plugin-react-compiler": "^1.0.0",
"jsdom": "^27.2.0",
"lefthook": "^2.0.4",
"react-devtools": "^7.0.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"ultracite": "6.3.8",
"vite": "^7.2.6",
"vitest": "^4.0.14"
},
"packageManager": "bun@1.3.3"
}