-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 717 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 717 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
{
"name": "realtime-chat-streaming",
"version": "1.0.0",
"description": "Real-time chat application with streaming capabilities",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["nodejs", "websocket", "socket.io", "streaming", "chat", "docker"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.5",
"mongoose": "^8.0.3",
"multer": "^1.4.5-lts.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}