-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
69 lines (69 loc) · 1.85 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
{
"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",
"upgrade-interactive": "npm-check --update",
"postinstall": "opencollective postinstall"
},
"engines": {
"node": "16.0.0",
"npm": "7.10.0"
},
"dependencies": {
"async": "3.2.6",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.3",
"compression": "^1.7.1",
"connect-flash": "latest",
"connect-mongo": "latest",
"cookie-parser": "^1.4.7",
"cookie-session": "^1.3.3",
"csurf": "^1.10.0",
"dateformat": "^3.0.3",
"dotenv": "^8.6.0",
"errorhandler": "^1.5.0",
"eslint": "^9.9.1",
"express": "^4.21.1",
"express-session": "^1.18.1",
"forever": "latest",
"method-override": "^3.0.0",
"moment": "^2.30.1",
"mongoose": "^5.13.22",
"morgan": "^1.9.0",
"opencollective": "^1.0.3",
"passport": "^0.7.0",
"passport-github": "latest",
"passport-github2": "^0.1.9",
"passport-google-oauth": "latest",
"passport-local": "latest",
"passport-twitter": "~1.0.2",
"promise-retry": "^2.0.1",
"pug": "^3.0.3",
"raven": "^2.1.2",
"serve-favicon": "^2.4.5",
"underscore": "latest",
"view-helpers": "latest",
"winston": "^3.14.2"
},
"devDependencies": {
"ava": "latest",
"braces": "^3.0.2",
"chai": "^4.2.0",
"grunt": "^1.3.0",
"grunt-contrib-sass": "latest",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "latest",
"js-yaml": "^3.14.0",
"mocha": "^10.2.0",
"nodemon": "latest",
"npm-check": "^5.9.2",
"should": "latest",
"supertest": "^6.0.0"
}
}