-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.86 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.86 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
{
"name": "dailywork",
"private": true,
"version": "0.1.9",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"version:sync": "node scripts/sync-version.js",
"tauri:build-mac": "npm run version:sync && set -a && source .env && set +a && npm run tauri build",
"tauri:build-win": "npm run version:sync && set -a && source .env && set +a && npm run tauri build -- --runner cargo-xwin --target x86_64-pc-windows-msvc",
"tauri:build-all": "npm run tauri:build-mac && npm run tauri:build-win",
"version": "npm run version:sync && git add ."
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fluentui/react-components": "^9.69.0",
"@fluentui/react-icons": "^2.0.308",
"@radix-ui/react-slot": "^1.2.3",
"@react-pdf/renderer": "^4.3.0",
"@tailwindcss/vite": "^4.1.12",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.0",
"@tauri-apps/plugin-dialog": "^2.3.3",
"@tauri-apps/plugin-fs": "^2.4.2",
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
"@tauri-apps/plugin-opener": "^2",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"exceljs": "^4.4.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"lucide-react": "^0.540.0",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"scheduler": "^0.26.0",
"tailwind-merge": "^3.3.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tauri-apps/cli": "^2",
"@types/node": "^20",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4.1.12",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}