-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 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
{
"name": "hono-cf",
"version": "0.0.1",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy --minify",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"typecheck": "tsc",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:generate": "drizzle-kit generate",
"db:local": "wrangler d1 migrations apply hono-cf",
"db:deploy": "wrangler d1 migrations apply hono-cf --remote"
},
"dependencies": {
"@hono/zod-openapi": "^0.18.4",
"@hono/zod-validator": "^0.4.3",
"@scalar/hono-api-reference": "^0.5.175",
"drizzle-orm": "^0.40.0",
"drizzle-zod": "^0.7.0",
"hono": "^4.7.2",
"hono-openapi": "^0.4.5",
"hono-pino": "^0.7.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"stoker": "^1.4.2",
"zod": "^3.24.2",
"zod-openapi": "^4.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@cloudflare/vitest-pool-workers": "^0.7.4",
"@cloudflare/workers-types": "^4.20250224.0",
"@libsql/client": "^0.14.0",
"drizzle-kit": "^0.30.5",
"eslint": "^9.21.0",
"eslint-plugin-format": "^1.0.1",
"vitest": "^2.1.8",
"wrangler": "^3.111.0"
}
}