-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 721 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 721 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
{
"name": "ComicHive",
"version": "1.0.0",
"type": "commonjs",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && prisma generate",
"postinstall": "prisma db push && prisma generate",
"start": "node dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.14.0",
"@prisma/client": "^6.5.0",
"@types/cors": "^2.8.17",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"hono": "^4.7.5",
"nodemailer": "^6.10.0",
"prisma": "^6.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.17.25",
"@types/nodemailer": "^6.4.17",
"tsx": "^4.7.1",
"typescript": "^5.8.2"
}
}