-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.77 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
{
"name": "express-backbone",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon --inspect ./bin/www",
"lint": "eslint 'app/**/*.js' 'test/**/*.js'",
"lintFix": "eslint 'app/**/*.js' 'test/**/*.js' --fix",
"test": "NODE_ENV=test mocha test/* --recursive --bail --exit",
"coverage": "nyc npm run test"
},
"dependencies": {
"aws-sdk": "^2.661.0",
"bcrypt": "^4.0.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-validator": "^6.4.0",
"faker": "^4.1.0",
"jsonwebtoken": "latest",
"lodash": "^4.17.19",
"mime-types": "^2.1.27",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"node-mailjet": "^3.3.1",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"password-validator": "^5.0.3",
"pug": "^3.0.0",
"uniqid": "^5.2.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@coax/eslint-config-be": "^1.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.8.0",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"nyc": "^15.0.1",
"sequelize-cli": "^5.5.1",
"sinon": "^9.0.2"
},
"eslintConfig": {
"extends": [
"@coax/eslint-config-be"
],
"rules": {
"no-console": [
"error",
{
"allow": [
"info",
"error"
]
}
],
"no-await-in-loop": "off",
"no-case-declarations": "off",
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "should|expect",
"argsIgnorePattern": "next|Sequelize"
}
]
}
}
}