-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
45
46
{
"name": "havtalk-server",
"version": "1.0.0",
"description": "Server for my project havtalk",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"author": "Soham Haldar",
"license": "ISC",
"dependencies": {
"@better-auth-kit/seed": "^1.0.11",
"@google/generative-ai": "^0.24.0",
"@prisma/client": "^6.6.0",
"bcrypt": "^5.1.1",
"better-auth": "^1.2.7",
"cloudinary": "^2.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.2",
"openai": "^4.95.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"prisma": "^6.7.0",
"resend": "^4.6.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/multer": "^1.4.12",
"@types/node": "^22.14.0",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}