-
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": "2026-tracker",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:worker": "wrangler dev --port 8787",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"deploy": "pnpm run build && wrangler deploy",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"test": "vitest run",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"db:generate": "drizzle-kit generate && tsx scripts/convert-migrations.ts",
"db:migrate": "wrangler d1 migrations apply 2026-tracker-db --local",
"db:migrate:prod": "wrangler d1 migrations apply 2026-tracker-db --remote",
"db:studio": "drizzle-kit studio",
"prepare": "husky",
"update:all": "taze -I -f -l"
},
"dependencies": {
"@fontsource-variable/inter": "5.2.8",
"@iconify/vue": "5.0.0",
"drizzle-orm": "1.0.0-beta.18-7eb39f0",
"hono": "4.12.8",
"ky": "1.14.3",
"pinia": "3.0.4",
"valibot": "1.3.1",
"vue": "3.5.30",
"vue-i18n": "11.3.0",
"vue-router": "5.0.4"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20260317.1",
"@hono/valibot-validator": "0.6.1",
"@types/node": "25.5.0",
"@vitejs/plugin-vue": "6.0.5",
"@vitest/browser-playwright": "4.1.0",
"@vitest/ui": "4.1.0",
"@vue/tsconfig": "0.9.0",
"drizzle-kit": "1.0.0-beta.18-7eb39f0",
"eslint-config-greenpie": "16.0.0-4",
"happy-dom": "20.8.4",
"husky": "9.1.7",
"msw": "2.12.13",
"oxlint": "1.56.0",
"oxlint-tsgolint": "0.17.1",
"taze": "19.10.0",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "8.0.1",
"vite-plugin-pwa": "1.2.0",
"vitest": "4.1.0",
"vitest-browser-vue": "2.1.0",
"vue-tsc": "3.2.6",
"workbox-window": "7.4.0",
"wrangler": "4.76.0"
},
"packageManager": "pnpm@10.32.1",
"msw": {
"workerDirectory": [
"public"
]
}
}