-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 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
{
"name": "api",
"type": "module",
"version": "0.1.0",
"scripts": {
"start": "wrangler dev",
"start:test": "wrangler dev --test-scheduled",
"db:setup": "tsx scripts/db-setup.ts",
"db:seed": "tsx scripts/seed.ts",
"db:seed:prod": "NODE_ENV=production tsx scripts/seed.ts",
"db:push": "drizzle-kit push",
"db:push:prod": "NODE_ENV=production drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:studio:prod": "NODE_ENV=production drizzle-kit studio",
"gen-types": "wrangler types --env-interface CloudflareBindings",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"deploy": "pnpm db:push:prod && wrangler deploy --minify --env production",
"secrets": "tsx scripts/secrets.ts"
},
"dependencies": {
"@hono/zod-openapi": "^1.1.4",
"@scalar/hono-api-reference": "^0.9.24",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"drizzle-zod": "^0.8.3",
"hono": "^4.10.5",
"zod": "^4.1.12"
},
"devDependencies": {
"@antfu/eslint-config": "^6.2.0",
"@libsql/client": "^0.15.15",
"@nerdfolio/drizzle-d1-helpers": "^0.1.4",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^24.10.1",
"drizzle-kit": "^0.31.7",
"eslint": "^9.39.1",
"eslint-plugin-format": "^1.0.2",
"tsx": "^4.20.6",
"wrangler": "^4.48.0"
}
}