-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 892 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": "chat_application",
"version": "1.0.0",
"description": "A chat application similar to Slack",
"dependencies": {
"body-parser": "1.18.2",
"express": "4.16.3",
"express-session": "1.15.6",
"mongodb": "3.0.8",
"mongoose": "5.1.0",
"socket.io": "2.1.1"
},
"devDependencies": {
"concurrently": "3.5.0"
},
"scripts": {
"start": "concurrently \"node server.js\" \"cd client && npm start\" \"mongod --quiet\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Pransh",
"license": "ISC",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nyctophiliacme/Chat-App.git"
},
"keywords": [
"Chat-App",
"Slack"
],
"bugs": {
"url": "https://github.com/nyctophiliacme/Chat-App/issues"
},
"homepage": "https://github.com/nyctophiliacme/Chat-App#readme"
}