-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
43 lines (43 loc) · 1.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
41
42
43
{
"name": "hono-open-api-starter",
"type": "module",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node ./dist/src/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "npm run lint --fix",
"test": "cross-env NODE_ENV=test vitest",
"build": "tsc && tsc-alias"
},
"dependencies": {
"@hono/node-server": "^1.13.2",
"@hono/zod-openapi": "^0.16.4",
"@libsql/client": "^0.14.0",
"@scalar/hono-api-reference": "^0.5.156",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"drizzle-orm": "^0.33.0",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.6",
"hono-pino": "^0.4.0",
"pino": "^9.5.0",
"pino-pretty": "^11.3.0",
"stoker": "^1.2.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/node": "^22.7.9",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.24.2",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
}
}