-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (55 loc) · 1.43 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
{
"name": "nwitter",
"description": "A twitter clone written with Node.js, Express, and MongoDB",
"version": "2.0.0",
"repository": "https://github.com/shilpir98r/Social-Buzz",
"private": false,
"author": "Shilpi Roy ",
"scripts": {
"start": "node server.js",
"test": "make test"
},
"engines": {
"node": "v6.11.3"
},
"dependencies": {
"async": "latest",
"body-parser": "^1.18.1",
"compression": "^1.7.1",
"connect-flash": "latest",
"connect-mongo": "latest",
"cookie-parser": "^1.4.3",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"forever": "latest",
"method-override": "^2.3.10",
"mongoose": "^4.11.12",
"morgan": "^1.9.0",
"notifier": "latest",
"passport": "^0.3.2",
"passport-github": "latest",
"passport-github2": "^0.1.9",
"passport-google-oauth": "latest",
"passport-local": "latest",
"passport-twitter": "~1.0.2",
"pug": "^2.0.0-rc.4",
"raven": "^2.1.2",
"serve-favicon": "^2.4.5",
"underscore": "latest",
"view-helpers": "latest"
},
"devDependencies": {
"ava": "latest",
"grunt": "^1.0.1",
"grunt-contrib": "^0.11.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"mocha": "^2.5.3",
"nodemon": "latest",
"should": "latest",
"supertest": "^3.0.0"
}
}