-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 KB
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
44
45
{
"name": "synchronous-chat",
"version": "1.0.0",
"description": "Network Applications Coursework",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"url": "git+https://github.com/psa95/Synchronous-Chat.git",
"type": "git"
},
"author": "Prasad Acharya <[email protected]>",
"contributors": [
{
"name": "Bello Ahmad Dangiwa",
"email": "[email protected]"
},
{
"name": "Nureni Adetola Onilogbo",
"email": "[email protected]"
},
{
"name": "Abdulhafiz Umar",
"email": "[email protected]"
}
],
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.1",
"ejs": "^2.5.8",
"express": "^4.16.3",
"express-session": "^1.15.6",
"mongoose": "^5.0.12",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"redis": "^2.8.0",
"socket.io": "^2.1.0",
"socket.io-redis": "^5.2.0"
}
}