-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
{
"scripts": {
"fix": "bun run lint && bun run format",
"lint": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts",
"type:check": "tsc",
"format": "npx prettier --write .",
"format:check": "npx prettier --check .",
"start": "wrangler dev --env local --live-reload src/server.ts",
"deploy": "wrangler deploy --env dev src/server.ts",
"undeploy": "wrangler delete --env dev src/server.ts",
"test": "bun run unit && bun run integration",
"unit": "cross-env-shell NO_LOGS=true jest --group=unit",
"integration": "cross-env-shell NO_LOGS=true jest --group=integration --maxWorkers=1"
},
"dependencies": {
"@hono/swagger-ui": "^0.4.1",
"@hono/zod-openapi": "^0.17.0",
"@scalar/hono-api-reference": "^0.5.159",
"hono": "^4.6.9",
"pino": "^9.5.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241112.0",
"@jest/globals": "^29.7.0",
"@types/aws-lambda": "^8.10.145",
"@types/dotenv": "^8.2.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"cross-env": "^7.0.3",
"esbuild": "^0.24.0",
"esbuild-jest": "^0.5.0",
"eslint": "^8.24.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.3",
"wrangler": "^3.86.1"
}
}