-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "blog-server",
"version": "0.0.1",
"private": true,
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "NODE_ENV=test mocha --recursive test",
"test:coverage": "nyc npm test",
"test:unit": "mocha --recursive test/middleware test/models test/routes",
"test:integration": "mocha --recursive test/integration"
},
"dependencies": {
"body-parser": "^1.13.3",
"compression": "^1.5.2",
"cookie-parser": "^1.3.3",
"express": "^4.13.3",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"glob": "^6.0.4",
"jwt-simple": "^0.5.1",
"method-override": "^2.3.0",
"morgan": "^1.6.1",
"mysql": "^2.8.0",
"mysql2": "^1.5.2",
"passport": "^0.3.0",
"passport-facebook": "^2.0.0",
"passport-github2": "^0.1.9",
"passport-google-oauth2": "^0.1.6",
"passport-instagram": "^1.0.0",
"passport-jwt": "^3.0.1",
"passport-twitter": "^1.0.3",
"sequelize": "^3.31.2",
"serve-favicon": "^2.3.0",
"underscore": "^1.8.3",
"validator": "^9.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"debug": "^2.2.0",
"gulp": "^3.9.0",
"gulp-livereload": "^3.8.0",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.0",
"mocha": "^4.0.1",
"nyc": "^10.0.0",
"supertest": "^2.0.0"
}
}