-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.26 KB
/
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
44
45
46
47
48
49
50
51
52
{
"name": "soccerkik",
"version": "1.0.0",
"description": "A chat application for soccer fans",
"engines": {
"node": "7.10.1",
"npm": "4.6.1"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"async": "^2.1.4",
"aws-sdk": "^2.64.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.16.1",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.3",
"csurf": "^1.9.0",
"ejs": "^2.5.5",
"ejs-mate": "^2.3.0",
"express": "^4.14.1",
"express-session": "^1.15.1",
"express-validator": "^3.1.2",
"forever": "^0.15.3",
"formidable": "^1.1.1",
"helmet": "^3.6.1",
"localtunnel": "^1.8.2",
"moment": "^2.17.1",
"mongodb": "^2.2.27",
"mongoose": "^4.11.6",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"nodemailer": "^4.0.1",
"nodemailer-smtp-transport": "^2.7.4",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"random-string-module": "^0.10.0",
"socket.io": "^1.7.2",
"underscore": "^1.8.3"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}