-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 850 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
{
"name": "livechat-backend",
"version": "1.0.0",
"description": "A simple live chat backend using Node.js, Express, and MongoDB with JWT authentication.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha tests/**/*.test.js"
},
"author": "Nicolas Dumermuth",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.1",
"lowdb": "^6.0.1",
"mongoose": "^5.12.3",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.1.6",
"ws": "^8.17.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.0.3",
"supertest": "^6.1.3"
},
"engines": {
"node": ">=12"
}
}