-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
80 lines (80 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
{
"name": "nodejs-scaffolding",
"version": "1.0.0",
"description": "A node.js sample application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "npm run jshint && npm run mocha",
"jshint": "jshint src/. test/. --config",
"mocha": "mocha test/ --recursive",
"add": "all-contributors add",
"generate": "all-contributors generate"
},
"repository": "https://github.com/khriztianmoreno/nodejs-scaffolding.git",
"keywords": [
"api",
"node",
"mobi",
"express",
"mongodb",
"passport"
],
"author": "Cristian Moreno <khriztianmoreno@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/khriztianmoreno/nodejs-scaffolding/issues"
},
"homepage": "https://github.com/khriztianmoreno/nodejs-scaffolding/blob/master/README.md",
"engines": {
"node": "^6.9.x"
},
"dependencies": {
"async": "^3.0.0",
"azure-storage": "^2.0.0",
"babel-polyfill": "^6.7.2",
"babel-runtime": "^6.6.1",
"bluebird": "^3.3.3",
"body-parser": "^1.13.3",
"composable-middleware": "^0.3.0",
"compression": "^1.6.2",
"connect-mongo": "^1.2.1",
"cookie-parser": "^1.3.5",
"cors": "^2.8.1",
"ejs": "^2.3.3",
"errorhandler": "^1.4.2",
"express": "^4.13.3",
"express-jwt": "^6.0.0",
"express-session": "^1.11.3",
"jsonwebtoken": "^7.0.0",
"lodash": "^4.6.1",
"lusca": "^1.3.0",
"method-override": "^2.3.5",
"moment": "^2.14.1",
"mongoose": "^5.7.7",
"mongoose-paginate": "^5.0.0",
"morgan": "~1.9.0",
"nodemailer": "^2.6.0",
"nodemailer-direct-transport": "^3.3.2",
"nodemailer-express-handlebars": "^2.0.0",
"passport": "~0.4.0",
"passport-facebook": "^2.0.0",
"passport-facebook-token": "^3.3.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.3",
"serve-favicon": "^2.3.0",
"stripe": "^4.15.0",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-eslint": "7.2.3",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "10.0.1",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.18.2",
"nodemon": "1.19.2",
"all-contributors-cli": "6.9.1"
}
}