-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.77 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
{
"name": "basic",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build --mode client && vite build",
"preview": "wrangler dev",
"deploy": "pnpm run build && wrangler deploy",
"typecheck": "tsc --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:setup": "tsx scripts/db-setup.ts",
"db:seed": "tsx scripts/db-seed.ts",
"db:migrate:local": "wrangler d1 execute gidoku-db --local --file=migrations/0001_initial_schema.sql && wrangler d1 execute gidoku-db --local --file=migrations/0002_add_sessions.sql",
"db:migrate:prod": "wrangler d1 execute gidoku-db --remote --file=migrations/0001_initial_schema.sql && wrangler d1 execute gidoku-db --remote --file=migrations/0002_add_sessions.sql",
"db:reset:local": "rm -rf .wrangler/state/v3/d1 && pnpm run db:migrate:local",
"db:console:local": "wrangler d1 execute gidoku-db --local --command",
"db:console:prod": "wrangler d1 execute gidoku-db --remote --command"
},
"dependencies": {
"@lordicon/element": "^2.0.1",
"arktype": "^2.0.0-rc.19",
"hono": "^4.10.7",
"honox": "^0.1.51",
"lottie-web": "^5.13.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.12.4",
"@cloudflare/workers-types": "^4.20260116.0",
"@hono/vite-build": "^1.3.0",
"@hono/vite-dev-server": "^0.18.2",
"@tailwindcss/vite": "^4.0.9",
"@types/node": "^24.10.2",
"oxfmt": "^0.55.0",
"oxlint": "^1.70.0",
"tailwindcss": "^4.0.9",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vite": "^6.3.5",
"vitest": "^3.2.4",
"wrangler": "^4.4.0"
}
}