-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "army-sync-v2",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"type-check": "tsc --noEmit",
"rust:fmt": "cd src-tauri && cargo fmt",
"rust:fmt:check": "cd src-tauri && cargo fmt -- --check",
"rust:lint": "cd src-tauri && cargo clippy -- -D warnings",
"check": "pnpm type-check && pnpm lint && pnpm rust:fmt:check"
},
"dependencies": {
"@dnd-kit/dom": "^0.3.2",
"@dnd-kit/react": "^0.3.2",
"@paralleldrive/cuid2": "^3.3.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "^2",
"clsx": "^2.1.1",
"color": "^5.0.3",
"lucide-react": "^1.7.0",
"motion": "^12.38.0",
"re-resizable": "^6.11.2",
"react": "^19.1.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.1.0",
"tailwind-merge": "^3.5.0",
"tailwind-variants": "^3.2.2",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@types/color": "^4.2.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.58.0",
"vite": "^7.0.4",
"vite-plugin-svgr": "^5.0.0"
}
}