Skip to content

Commit

Permalink
feat(entities): add self url
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiin committed Sep 17, 2022
1 parent e018a24 commit 9321070
Show file tree
Hide file tree
Showing 7 changed files with 15,766 additions and 11,415 deletions.
6 changes: 3 additions & 3 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
'prettier',
'unicorn',
'import',
'no-secrets',
'simple-import-sort'
],
extends: [
'plugin:import/typescript',
Expand Down Expand Up @@ -43,7 +43,6 @@ module.exports = {
'no-duplicate-imports': 'error',
'no-param-reassign': 'error',
'unicorn/filename-case': 'off',
'no-secrets/no-secrets': 'error',
'no-array-constructor': 'error',
'no-mixed-operators': 'error',
'import/default': 'off',
Expand All @@ -68,14 +67,15 @@ module.exports = {
'unicorn/import-style': 'off',
'unicorn/prefer-module': 'off',
'unicorn/prefer-node-protocol': 'off',
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{ argsIgnorePattern: '^_' },
],
"no-secrets/no-secrets":["error",{"ignoreContent":"^(operations.|exception.|validation.)"}],
'no-multi-spaces': 'error',
'linebreak-style': ['error', 'unix'],
'newline-before-return': 'error',
Expand Down
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"orm": "npx mikro-orm"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.168.0",
"@aws-sdk/client-ses": "^3.171.0",
"@casl/ability": "^6.1.1",
"@golevelup/nestjs-modules": "^0.6.1",
"@golevelup/nestjs-rabbitmq": "^3.2.0",
Expand All @@ -44,15 +44,15 @@
"@nestjs/swagger": "^6.1.2",
"@nestjs/terminus": "^9.1.1",
"@nestjs/throttler": "^3.0.0",
"@sentry/hub": "^7.12.1",
"@sentry/node": "^7.12.1",
"@sentry/types": "^7.12.1",
"@sentry/hub": "^7.13.0",
"@sentry/node": "^7.13.0",
"@sentry/types": "^7.13.0",
"@supercharge/request-ip": "^1.2.0",
"@xiifain/nestjs-sentry": "^4.0.2",
"argon2": "^0.29.1",
"cache-manager": "^4.1.0",
"cache-manager-redis-store": "^2.0.0",
"cloudinary": "^1.31.0",
"cloudinary": "^1.32.0",
"compression": "^1.7.4",
"date-fns": "^2.29.3",
"eta": "^1.12.3",
Expand Down Expand Up @@ -83,25 +83,25 @@
"@firebase/app-compat": "0.x",
"@firebase/app-types": "0.x",
"@golevelup/ts-jest": "^0.3.3",
"@mikro-orm/cli": "^5.4.1",
"@mikro-orm/seeder": "^5.4.1",
"@mikro-orm/cli": "^5.4.2",
"@mikro-orm/seeder": "^5.4.2",
"@nestjs/cli": "9.1.3",
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.0.11",
"@types/cache-manager": "^4.0.2",
"@types/cache-manager-redis-store": "^2.0.1",
"@types/compression": "^1.7.2",
"@types/jest": "^29.0.1",
"@types/jest": "^29.0.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.7.17",
"@types/node": "^18.7.18",
"@types/nodemailer": "^6.4.6",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-jwt": "^3.0.6",
"@types/preview-email": "^2.0.1",
"@types/puppeteer": "^5.4.6",
"@types/qs": "6.9.7",
"@types/sharp": "^0.30.5",
"@types/sharp": "^0.31.0",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.37.0",
Expand All @@ -111,8 +111,8 @@
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"express": "^4.18.1",
"husky": "^8.0.1",
Expand All @@ -121,7 +121,7 @@
"prettier": "^2.7.1",
"sample-env": "^1.0.2",
"supertest": "6.2.4",
"ts-jest": "29.0.0",
"ts-jest": "29.0.1",
"ts-loader": "9.3.1",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
Expand Down
Loading

0 comments on commit 9321070

Please sign in to comment.