-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 924 Bytes
/
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
{
"name": "node-api",
"main": "server.js",
"engines": {
"node": "6.5.0",
"npm": "3.10.3"
},
"scripts": {
"test": "npm run test-unit",
"test-unit": "istanbul cover _mocha test -- -R spec"
},
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "1.15.2",
"cors": "^2.8.1",
"express": "~4.0.0",
"jsonapi-serializer": "^3.4.0",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.2.9",
"morgan": "^1.7.0",
"nodemailer": "^2.6.0",
"nodemailer-mailgun-transport": "^1.2.2",
"nodemailer-smtp-transport": "^2.7.2",
"password-generator": "^2.0.2",
"randomstring": "^1.1.5",
"xoauth2": "^1.2.0"
},
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"istanbul": "^0.4.5",
"jshint": "^2.9.3",
"jshint-stylish": "^2.2.1",
"jsinspect": "^0.8.0",
"mocha": "^3.0.2",
"sinon": "1.17.4",
"sinon-chai": "2.8.0"
}
}