-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "cloudflare-hono-drizzle-zod-starter-pack",
"type": "module",
"version": "0.2.0",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"lint": "eslint . ",
"lint:fix": "eslint . --fix",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"test": "vitest",
"prepare": "husky"
},
"dependencies": {
"@hono/zod-validator": "^0.7.2",
"@neondatabase/serverless": "^1.0.1",
"drizzle-orm": "^0.44.4",
"drizzle-zod": "^0.8.3",
"hono": "^4.8.12",
"pg": "^8.16.3",
"zod": "^4.0.15"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.0",
"@cloudflare/workers-types": "^4.20250807.0",
"@edge-runtime/vm": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/pg": "^8.15.5",
"dotenv": "^17.2.1",
"drizzle-kit": "^0.31.4",
"eslint": "^9.32.0",
"eslint-plugin-format": "^1.0.1",
"husky": "^9.1.7",
"i": "^0.3.7",
"lint-staged": "^16.1.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"wrangler": "^4.28.1"
}
}