forked from BishoySedra/ChatSphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 887 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
32
33
34
35
{
"name": "chatsphere",
"version": "1.0.0",
"description": "Full-Stack Chat Application Project using ReactJS and NodeJS.",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "node index.js --enviroment dev",
"dev": "nodemon index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js "
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cloudinary": "^2.2.0",
"commander": "^12.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"joi": "^17.12.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.1",
"multer": "^1.4.3",
"nodemailer": "^6.9.13",
"socket.io": "^4.7.5",
"streamifier": "^0.1.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^6.3.4"
}
}