-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 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
{
"name": "gcriva",
"version": "1.0.0",
"description": "Gcriva's Management system",
"repository": {
"type": "git",
"url": "https://github.com/gcriva/gcriva.git"
},
"author": {
"name": "Wagner Resende Santos",
"email": "[email protected]",
"url": "https://github.com/wagoid"
},
"engines": {
"node": "8.1.4"
},
"license": "MIT",
"scripts": {
"start": "nodemon server.js",
"test": "MONGO_HOST=localhost NODE_ENV=test mocha 'test/**/*.spec.js'",
"test:coverage": "MONGO_HOST=localhost NODE_ENV=test nyc --reporter=html --reporter=text mocha 'test/**/*.spec.js'",
"lint": "eslint --ignore-path .gitignore ./ && echo $'\\360\\237\\215\\272 Lint free! \n'",
"validate": "npm-run-all lint test:coverage"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.4.7",
"body-parser": "^1.17.1",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"cloudinary": "^1.9.0",
"compression": "^1.6.2",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-async-errors": "^2.0.0",
"express-validator": "^3.1.2",
"github": "^9.2.0",
"i18n": "^0.8.3",
"jsonwebtoken": "^7.4.0",
"lob": "^3.9.0",
"lusca": "^1.4.1",
"mongoose": "^4.11.5",
"morgan": "^1.7.0",
"multer": "^1.3.0",
"nodemailer": "^3.1.7",
"passport": "0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-jwt": "^2.2.1",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"ramda": "^0.23.0",
"request": "^2.78.0",
"rollbar": "^0.6.6",
"validator": "^8.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-subset": "^1.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.1.2",
"mockery": "^2.0.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.3.0",
"supertest": "^3.0.0",
"testdouble": "^2.1.2"
}
}