-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.27 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.27 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
{
"name": "stack",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"tauri": "tauri",
"db:clear": "rm -f \"$HOME/Library/Application Support/app.stack.desktop/stack.db\" \"$HOME/Library/Application Support/app.stack.desktop/stack.db-wal\" \"$HOME/Library/Application Support/app.stack.desktop/stack.db-shm\"",
"tauri:dev:cleardb": "npm run db:clear && npm run tauri dev",
"build:dmg": "bash scripts/build-dmg.sh"
},
"dependencies": {
"@crabnebula/tauri-plugin-drag": "^2.1.0",
"@tanstack/react-query": "^5.56.0",
"@tanstack/react-virtual": "^3.10.0",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-opener": "^2.0.0",
"iconsax-reactjs": "^0.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.0.0",
"@types/node": "^25.6.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.3"
}
}