-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 3.17 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "EmailAppServer",
"version": "0.0.1",
"main": "index.js",
"private": false,
"engines": {
"node": ">=4.6.x",
"npm": ">=2.15.x",
"yarn": ">=0.20.3"
},
"scripts": {
"start": "gulp serve",
"build": "gulp",
"build:prod": "yarn build",
"lint": "esw *.js server config --color",
"lint:watch": "npm run lint -- --watch",
"test": "cross-env NODE_ENV=test babel-node node_modules/isparta/bin/isparta cover node_modules/mocha/bin/_mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register ./server/**/*.test.js",
"test:watch": "npm run test -- --watch",
"test:check-coverage": "npm run test && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"mocha",
"istanbul",
"REST",
"API",
"boilerplate"
],
"dependencies": {
"bcrypt": "0.8.7",
"bcrypt-nodejs": "0.0.3",
"bluebird": "3.4.6",
"body-parser": "1.15.2",
"compression": "1.6.2",
"cookie-parser": "1.4.3",
"cors": "2.8.1",
"cross-env": "3.1.3",
"debug": "^2.2.0",
"express": "4.14.0",
"express-session": "1.14.2",
"express-validation": "1.0.1",
"express-winston": "2.0.0",
"fuse.js": "2.6.1",
"helmet": "3.0.0",
"http-status": "^0.2.0",
"imap": "^0.8.16",
"joi": "9.2.0",
"jsonwebtoken": "7.1.9",
"lodash": "4.17.4",
"mailparser": "0.6.1",
"method-override": "^2.3.5",
"moment": "2.18.1",
"mongoose": "4.13.7",
"mongoose-paginate": "5.0.3",
"morgan": "1.7.0",
"natural": "0.5.0",
"node-ews": "3.1.0",
"node-fetch": "1.6.3",
"node-wikipedia": "0.0.2",
"nodemailer": "2.6.4",
"oauth": "0.9.14",
"passport": "0.3.2",
"passport-google-oauth": "1.0.0",
"passport-jwt": "2.2.1",
"passport-trello": "0.1.5",
"pos": "0.4.2",
"request": "2.83.0",
"request-promise": "4.2.2",
"socket.io": "1.7.2",
"striptags": "2.1.1",
"url": "0.11.0",
"winston": "2.2.0"
},
"devDependencies": {
"apidoc": "0.17.6",
"babel-cli": "6.18.0",
"babel-core": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"chai": "^3.4.1",
"commitizen": "^2.8.2",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "1.2.0",
"del": "^2.2.0",
"eslint": "3.9.0",
"eslint-config-airbnb-base": "7.1.0",
"eslint-plugin-import": "1.16.0",
"eslint-watch": "2.1.14",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"isparta": "4.0.0",
"mocha": "3.1.2",
"run-sequence": "^1.1.5",
"supertest": "2.0.1",
"supertest-as-promised": "4.0.2",
"validate-commit-msg": "^2.6.1"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}