-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "portfolio-api-vercel-node",
"type": "module",
"version": "1.0.0",
"scripts": {
"db:migrate": "drizzle-kit migrate",
"dev": "tsx watch src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"test": "cross-env NODE_ENV=test LOG_LEVEL=silent vitest",
"vercel:dev": "npm run build && vercel dev",
"typecheck": "tsc --noEmit",
"build": "tsc && tsc-alias"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@hono/node-server": "^1.13.7",
"@hono/zod-openapi": "^0.18.3",
"@scalar/hono-api-reference": "^0.5.162",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"drizzle-orm": "^0.38.2",
"drizzle-zod": "^0.6.0",
"hono": "^4.6.13",
"hono-pino": "^0.7.0",
"pg": "^8.13.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/node": "^20.11.17",
"@types/pg": "^8.11.10",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.30.1",
"eslint": "^9.15.0",
"eslint-plugin-format": "^0.1.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "5.6.2",
"vitest": "^2.1.8"
}
}