-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 878 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
36
37
38
39
{
"name": "chat-server",
"version": "1.0.0",
"description": "chat-server",
"main": "server.js",
"dependencies": {
"app-module-path": "^2.2.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"config": "^3.3.11",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^4.6.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.2",
"password-hash": "^1.2.2",
"uuid-apikey": "^1.5.1"
},
"scripts": {
"start_prod": "nodemon server.js",
"start_dev": "nodemon server.js",
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Kishor",
"license": "MIT",
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*"
],
"delay": "1000"
}
}