-
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.2 KB
/
package.json
File metadata and controls
41 lines (41 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
{
"name": "analytics",
"description": "Complete backend API template using Hono + Chanfana + D1 + Vitest.",
"private": true,
"cloudflare": {
"label": "Backend OpenAPI Template",
"products": [
"Workers",
"D1"
],
"categories": [
"storage"
],
"icon_urls": [
"https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/5ca0ca32-e897-4699-d4c1-6b680512f000/public"
],
"docs_url": "https://chanfana.com",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/91076b39-1f5b-46f6-7f14-536a6f183000/public",
"publish": true
},
"scripts": {
"cf-typegen": "wrangler types",
"deploy": "wrangler deploy",
"dev": "pnpm seedLocalDb && wrangler dev",
"predeploy": "wrangler d1 migrations apply DB --remote",
"seedLocalDb": "wrangler d1 migrations apply DB --local",
"schema": "npx chanfana",
"test": "wrangler deploy --dry-run && npx vitest run --config tests/vitest.config.mts"
},
"dependencies": {
"chanfana": "2.8.1",
"hono": "4.8.2",
"zod": "3.25.67"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.8.44",
"@types/node": "24.0.4",
"typescript": "5.8.3",
"wrangler": "4.21.x"
}
}