-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
{
"name": "misub",
"version": "2.4.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "npx wrangler pages dev public --port 8787",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:server\"",
"build": "vite build",
"build:edgeone": "vite build --mode edgeone",
"preview": "vite preview",
"start": "node server/index.mjs",
"start:vps": "node server/index.mjs",
"check-pwa": "node check-pwa.js",
"build-pwa": "vite build && echo PWA build completed!",
"test": "vitest --passWithNoTests",
"test:run": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:chrome": "node test-chrome-mcp.js"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"clsx": "^2.1.1",
"dompurify": "^3.2.6",
"js-yaml": "^4.1.0",
"pinia": "^3.0.3",
"qrcode": "^1.5.4",
"vue": "^3.5.18",
"vue-router": "^4.6.4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/test-utils": "^2.4.6",
"happy-dom": "^20.0.11",
"miniflare": "^4.20250803.0",
"tailwindcss": "^4.1.12",
"vite": "^7.1.2",
"vite-plugin-pwa": "^1.0.3",
"vitest": "^4.0.16",
"workbox-window": "^7.3.0",
"wrangler": "^4.56.0"
}
}