-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 894 Bytes
/
package.json
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": "hive-chat",
"version": "1.0.0",
"description": "A chat application using Node.js, Express, MongoDB, and Socket.io",
"main": "backend/server.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start":"node backend/server.js",
"dev": "nodemon backend/server.js",
"build": "npm install --legacy-peer-deps && npm install --legacy-peer-deps --prefix frontend && npm run build --prefix frontend"
},
"author": "Mirza Mahrab Hossain",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.2",
"nodemon": "^3.1.0",
"socket.io": "^4.7.5"
},
"devDependencies": {
"jest": "^29.7.0",
"mongodb-memory-server": "^9.2.0",
"supertest": "^7.0.0"
}
}