Skip to content

Commit 6a1355a

Browse files
authored
Merge pull request #63 from eldimious/feature/NAS-0_update_package
NAS-0: update package dependencies
2 parents 2e909dd + 27421cd commit 6a1355a

File tree

20 files changed

+720
-1605
lines changed

20 files changed

+720
-1605
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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ for running tests.
8181

8282
# Endpoints #
8383

84+
You can take a look at API's endpoints navigated to http://localhost:5555/docs/
85+
8486
## Auth Routes ##
8587

8688
### Register ###
@@ -199,7 +201,7 @@ GET /users/:userId/posts/:postId
199201
- [Express-validator](https://github.com/ctavan/express-validator)
200202
- [Bcrypt](https://github.com/dcodeIO/bcrypt.js)
201203
- [Jsonwebtoken](https://github.com/auth0/node-jsonwebtoken)
202-
- [Redis](https://github.com/redis/node-redis)
204+
- [Redis](https://github.com/luin/ioredis)
203205
- [Express-winston](https://github.com/bithavoc/express-winston)
204206
- [Winston](https://github.com/winstonjs/winston)
205207
- [Mocha](https://www.npmjs.com/package/mocha)

0 commit comments

Comments
 (0)