-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
44
45
46
47
48
{
"name": "worker",
"private": true,
"license": "GPL-3.0-only",
"author": "battlesqui_d",
"version": "1.0.0",
"description": "worker service for qnaplus",
"homepage": "https://github.com/qnaplus/worker#readme",
"bugs": {
"url": "https://github.com/qnaplus/worker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qnaplus/worker.git"
},
"scripts": {
"deploy": "wrangler deploy -e dev",
"deploy:prod": "wrangler deploy",
"deploy:all": "yarn deploy && yarn deploy:prod",
"dev": "wrangler dev",
"start": "wrangler dev",
"test": "vitest",
"cf-typegen": "wrangler types"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.6.4",
"@cloudflare/workers-types": "^4.20250214.0",
"@qnaplus/scraper": "^3.1.1",
"openapi-types": "^12.1.3",
"typescript": "^5.5.2",
"vitest": "~2.1.9",
"wrangler": "^3.109.2"
},
"volta": {
"node": "22.13.1",
"pnpm": "10.10.0"
},
"dependencies": {
"@hono/zod-validator": "^0.4.1",
"@scalar/hono-api-reference": "^0.8.8",
"drizzle-orm": "^0.40.0",
"hono": "^4.7.2",
"hono-openapi": "^0.4.8",
"postgres": "^3.4.5",
"zod": "^3.24.4",
"zod-openapi": "^4.2.4"
}
}