-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 KB
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": "restifyAuth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Gilbert Laskawiec",
"license": "MIT",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js || bunyan -o short",
"eslint": "eslint src/*.js",
"test": "NODE_ENV=test mocha",
"testWithCoverage": "nyc --reporter=html mocha"
},
"dependencies": {
"bcrypt": "^3.0.2",
"bcryptjs": "^2.4.3",
"bunyan": "^1.8.12",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"config": "^3.0.0",
"crypto": "^1.0.1",
"http-status": "^1.3.1",
"joi": "^14.0.6",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.3.12",
"mongoose-timestamp": "^0.6.0",
"nodemailer": "^4.6.8",
"nyc": "^13.1.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^1.0.0",
"restify": "^7.2.2",
"restify-cors-middleware": "^1.1.1",
"restify-errors": "^6.1.1",
"restify-swagger-jsdoc": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"supertest": "^3.3.0"
}
}