-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 936 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
40
41
42
43
{
"name": "nodejs-socketio-chat-app",
"version": "1.5.0",
"description": "A Real Time Chat Application built using Node.js, Express, MongoDB, Socket.io.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"nodejs",
"expressjs",
"mongodb",
"socket.io",
"real-time",
"chat-app"
],
"author": "VithalReddy",
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"body-parser": "^1.17.2",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.6",
"express": "^4.15.3",
"express-session": "^1.15.3",
"lodash": "^4.17.4",
"method-override": "^3.0.0",
"mongoose": "^5.6.4",
"morgan": "^1.8.1",
"path": "^0.12.7",
"shortid": "^2.2.8",
"socket.io": "^2.0.1"
}
}