forked from vinitkumar/node-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "nwitter",
"description": "A twitter clone written with Node.js, Express, and MongoDB",
"version": "2.1.0",
"repository": "https://github.com/vinitkumar/node-twitter",
"private": false,
"author": "Vinit Kumar <[email protected]> (http://vinitkumar.me)",
"scripts": {
"start": "nodemon server.js",
"test": "make test",
"postinstall": "opencollective postinstall"
},
"engines": {
"node": "12.13.0",
"npm": "6.13.0"
},
"dependencies": {
"async": "latest",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.1",
"compression": "^1.7.1",
"connect-flash": "latest",
"connect-mongo": "latest",
"dotenv": "^8.2.0",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"csurf": "^1.10.0",
"errorhandler": "^1.5.0",
"eslint": "^4.15.0",
"express": "^4.16.2",
"express-session": "^1.17.0",
"forever": "latest",
"method-override": "^2.3.10",
"moment": "^2.20.1",
"mongoose": "^5.7.8",
"morgan": "^1.9.0",
"opencollective": "^1.0.3",
"passport": "^0.3.2",
"passport-github": "latest",
"passport-github2": "^0.1.9",
"passport-google-oauth": "latest",
"passport-local": "latest",
"passport-twitter": "~1.0.2",
"promise-retry": "^1.1.1",
"pug": "^2.0.0-rc.4",
"raven": "^2.1.2",
"serve-favicon": "^2.4.5",
"underscore": "latest",
"view-helpers": "latest",
"winston": "^2.4.0"
},
"devDependencies": {
"braces": ">=2.3.1",
"ava": "latest",
"grunt": "^1.0.3",
"grunt-contrib-sass": "latest",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "latest",
"mocha": "5.2.0",
"nodemon": "latest",
"should": "latest",
"supertest": "^3.0.0",
"js-yaml": ">=3.13.1"
}
}