-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "realtime-chat-api",
"version": "1.0.0",
"description": "Real-time Chat API — Node.js + TypeScript + Socket.io + Redis + PostgreSQL",
"main": "src/app.ts",
"scripts": {
"dev": "ts-node src/app.ts",
"build": "tsc",
"start": "ts-node src/app.ts",
"db:migrate": "prisma migrate dev",
"db:generate": "prisma generate",
"db:studio": "prisma studio"
},
"dependencies": {
"22": "^0.0.0",
"@prisma/adapter-pg": "^7.6.0",
"@prisma/client": "^7.5.0",
"axios": "^1.14.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^3.3.2",
"pg": "^8.20.0",
"postgres": "^3.4.8",
"redis": "^4.6.13",
"socket.io": "^4.7.4",
"socket.io-client": "^4.8.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.5",
"@types/uuid": "^9.0.7",
"prisma": "^7.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}