-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 904 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 904 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
{
"name": "socket-chat",
"version": "2.0.0",
"description": "Real-time multi-room chat built with Node.js, Express and Socket.IO",
"main": "server/server.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node server/server.js",
"dev": "nodemon server/server.js",
"lint": "echo \"No linter configured – add eslint for full enforcement\"",
"test": "echo \"No tests yet – add jest/mocha for unit coverage\""
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^4.16.3",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"morgan": "^1.10.1",
"socket.io": "^4.8.3",
"validator": "^13.15.26",
"winston": "^3.19.0"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}