-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.03 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.03 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
{
"name": "duck",
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts",
"db:touch": "wrangler d1 execute honc-d1-database --local --command='SELECT 1'",
"db:generate": "drizzle-kit generate",
"db:migrate": "wrangler d1 migrations apply honc-d1-database --local",
"db:migrate:prod": "ENVIRONMENT=production drizzle-kit migrate",
"db:seed": "tsx seed.ts",
"db:seed:prod": "ENVIRONMENT=production tsx seed.ts",
"db:setup": "npm run db:touch && npm run db:generate && npm run db:migrate && npm run db:seed",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@fiberplane/hono": "0.4.4-beta.2",
"@hono/zod-openapi": "^0.18.4",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.39.3",
"hono": "^4.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250321.0",
"@libsql/client": "^0.14.0",
"drizzle-kit": "^0.30.4",
"drizzle-seed": "^0.3.1",
"tsx": "^4.19.2",
"wrangler": "^4.4.0"
}
}