-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 903 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 903 Bytes
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
{
"name": "my_server",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"format": "npx prettier . --write",
"db:generate": "pnpm drizzle-kit generate",
"db:push": "pnpm drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@hono/node-server": "^1.14.1",
"@hono/zod-validator": "^0.5.0",
"@neondatabase/serverless": "^1.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/jsonwebtoken": "^9.0.9",
"bcryptjs": "^3.0.2",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"hono": "^4.7.8",
"jsonwebtoken": "^9.0.2",
"pg": "^8.15.6",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^20.11.17",
"@types/pg": "^8.11.14",
"drizzle-kit": "^0.31.0",
"prettier": "^3.5.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}