-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 777 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 777 Bytes
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": "node-chat-application",
"version": "1.0.0",
"description": "A simple chat app with nodejs and socket.io",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rupachowrasia/node-chat-application.git"
},
"keywords": [
"chat"
],
"author": "Rupa",
"license": "ISC",
"bugs": {
"url": "https://github.com/rupachowrasia/node-chat-application/issues"
},
"homepage": "https://github.com/rupachowrasia/node-chat-application#readme",
"dependencies": {
"express": "^4.15.3",
"mongoose": "^4.11.5",
"socket.io": "^2.0.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}