-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 953 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 953 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
36
37
38
{
"name": "auth-service",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "rm -rf dist/ && tsc",
"start": "node dist/index.js",
"generate": "prisma generate",
"lint": "eslint src --ext .ts",
"prepare": "husky"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@hono/zod-openapi": "^0.18.3",
"@prisma/client": "^6.5.0",
"hono": "^4.6.14",
"hono-pino": "^0.8.0",
"pino": "^9.6.0",
"redis": "^4.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.17.10",
"bcrypt": "^5.1.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prisma": "^6.5.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"uuid": "^11.0.3"
}
}