-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1 KB
/
package.json
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
{
"name": "vms",
"version": "0.0.1",
"private": true,
"scripts": {
"prepare": "husky",
"start": "npm run dev",
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify",
"deploy:prod": "wrangler deploy --minify --env production",
"format": "dprint fmt --staged",
"typecheck": "tsc --noEmit",
"lint:js": "eslint --fix",
"lint": "npm run typecheck && npm run lint:js",
"db:setup": "wrangler d1 migrations apply vms-local --local --persist-to=db"
},
"dependencies": {
"@hono/zod-openapi": "0.18.3",
"hono": "^4.6.17"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250121.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"dprint": "0.48.0",
"eslint": "9.17.0",
"globals": "15.13.0",
"husky": "9.1.7",
"typescript": "5.7.2",
"wrangler": "^3.103.2",
"zod": "^3.24.1"
},
"volta": {
"node": "22.12.0"
},
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1"
}
}