forked from w3cj/hono-open-api-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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-api-starter",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf",
"scripts": {
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@hono/zod-openapi": "^0.18.3",
"@paralleldrive/cuid2": "^2.2.2",
"@scalar/hono-api-reference": "^0.5.165",
"argon2": "^0.41.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"drizzle-orm": "^0.38.3",
"drizzle-zod": "^0.6.1",
"hono": "^4.6.16",
"hono-pino": "^0.7.0",
"nanoid": "^5.0.9",
"pg": "^8.13.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"redis": "^4.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@faker-js/faker": "^9.4.0",
"@types/node": "^22.10.7",
"@types/pg": "^8.11.10",
"@typescript-eslint/parser": "^8.20.0",
"drizzle-kit": "^0.30.1",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}