forked from sahat/hackathon-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "hackathon-starter",
"version": "5.0.0",
"description": "A boilerplate for Node.js web applications",
"repository": {
"type": "git",
"url": "https://github.com/sahat/hackathon-starter.git"
},
"author": "Sahat Yalkabov",
"license": "MIT",
"scripts": {
"postinstall": "npm rebuild node-sass",
"start": "node app.js",
"test": "nyc mocha --timeout=3000 --exit",
"lint": "eslint **/*.js"
},
"dependencies": {
"@octokit/rest": "^15.2.6",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.2",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.2",
"clockwork": "^0.1.4",
"compression": "^1.7.2",
"connect-mongo": "^2.0.1",
"dotenv": "^5.0.1",
"errorhandler": "^1.5.0",
"express": "^4.16.3",
"express-flash": "^0.0.2",
"express-session": "^1.15.6",
"express-status-monitor": "^1.0.1",
"express-validator": "^5.1.0",
"fbgraph": "^1.4.1",
"instagram-node": "^0.5.8",
"lastfm": "^0.9.2",
"lob": "^5.2.0",
"lusca": "^1.5.2",
"mongoose": "^5.0.12",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"node-foursquare": "^0.3.2",
"node-linkedin": "^0.5.6",
"node-sass": "^4.8.3",
"node-sass-middleware": "^0.11.0",
"nodemailer": "^4.6.4",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"passport-instagram": "^1.0.0",
"passport-linkedin-oauth2": "^1.5.0",
"passport-local": "^1.0.0",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"passport-twitter": "^1.0.4",
"paypal-rest-sdk": "^1.8.1",
"pug": "^2.0.3",
"request": "^2.85.0",
"stripe": "^5.6.1",
"tumblr.js": "^1.1.1",
"twilio": "^3.14.0",
"twit": "^2.2.9",
"validator": "^9.4.1"
},
"peerDependencies": {
"node-sass": "^4.7.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"sinon-mongoose": "^2.1.1",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
}
}