-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 812 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 812 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
{
"name": "hango-api",
"version": "1.0.0",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"migrate": "node --loader ts-node/esm scripts/migrate.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "HanGo API - Node.js + Hono + PostgreSQL backend",
"devDependencies": {
"@types/node": "^22.10.1",
"@types/pg": "^8.11.10",
"@types/bcryptjs": "^2.4.6",
"typescript": "^5.8.3",
"tsx": "^4.19.2",
"ts-node": "^10.9.2"
},
"dependencies": {
"hono": "^4.7.13",
"@hono/node-server": "^1.14.0",
"pg": "^8.13.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"jsonwebtoken": "^9.0.2",
"@types/jsonwebtoken": "^9.0.7"
}
}