chore: update deps

This commit is contained in:
ppetzold 2021-09-09 12:45:00 +02:00
parent c346227968
commit 929cfe8d1e
3 changed files with 650 additions and 654 deletions

View File

@ -5,12 +5,7 @@
"sourceType": "module"
},
"plugins": ["@typescript-eslint/eslint-plugin"],
"extends": [
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
],
"extends": ["plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"root": true,
"env": {
"node": true,
@ -19,6 +14,7 @@
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }]
}
}

1280
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -33,21 +33,21 @@
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.6.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@types/node": "^16.9.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.1",
"prettier": "^2.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.3.0",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typeorm": "^0.2.37",
"typescript": "^4.3.5"
"typescript": "^4.4.2"
},
"peerDependencies": {
"@nestjs/common": "^8.0.6",