Skip to content

Commit 74c74ad

Browse files
committed
NAS-0: update package dependencies
1 parent 2e909dd commit 74c74ad

File tree

20 files changed

+796
-1614
lines changed

20 files changed

+796
-1614
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
dist

.eslintrc.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
module.exports = {
2-
extends: 'airbnb',
2+
root: true,
3+
extends: [
4+
'eslint-config-airbnb-base',
5+
],
6+
parserOptions: {
7+
ecmaVersion: 2020,
8+
},
39
rules: {
410
'no-underscore-dangle': [2, { allowAfterThis: true }],
511
'class-methods-use-this': 0,
612
strict: 0,
713
'max-len': 0,
814
'new-cap': ['error', { newIsCapExceptionPattern: '^errors\..' }],
9-
},
10-
parserOptions: {
11-
ecmaVersion: 2020,
15+
'import/prefer-default-export': 'off',
16+
'no-useless-constructor': 'off',
17+
'import/extensions': 'off',
1218
},
1319
};

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ GET /users/:userId/posts/:postId
199199
- [Express-validator](https://github.com/ctavan/express-validator)
200200
- [Bcrypt](https://github.com/dcodeIO/bcrypt.js)
201201
- [Jsonwebtoken](https://github.com/auth0/node-jsonwebtoken)
202-
- [Redis](https://github.com/redis/node-redis)
202+
- [Redis](https://github.com/luin/ioredis)
203203
- [Express-winston](https://github.com/bithavoc/express-winston)
204204
- [Winston](https://github.com/winstonjs/winston)
205205
- [Mocha](https://www.npmjs.com/package/mocha)

0 commit comments

Comments
 (0)