Skip to content

Commit

Permalink
update eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
underfisk committed Jan 23, 2024
1 parent e34a736 commit 46bf8a3
Show file tree
Hide file tree
Showing 7 changed files with 1,287 additions and 2,405 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ module.exports = {
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'prettier/@typescript-eslint',
'plugin:prettier/recommended',
],
root: true,
Expand Down
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
build/
dist/
documentation/
node_modules
.github/
*.md
7 changes: 5 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"singleQuote": true,
"trailingComma": "all",
"semi": false
}
"bracketSpacing": true,
"endOfLine": "auto",
"arrowParens": "avoid",
"printWidth": 120
}
60 changes: 30 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"dist/**/*"
],
"engines": {
"node": "^16"
"node": ">=18"
},
"license": "MIT",
"scripts": {
Expand All @@ -34,38 +34,38 @@
"release": "pnpm run build && pnpm run test && np"
},
"dependencies": {
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"reflect-metadata": "^0.2.1",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.1.0",
"@nestjs/common": "^10.0.4",
"@nestjs/core": "^10.0.4",
"@nestjs/platform-express": "^10.0.5",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.4",
"@types/express": "^4.17.17",
"@types/jest": "^26.0.24",
"@nestjs/cli": "^10.3.0",
"@nestjs/common": "^10.3.1",
"@nestjs/core": "^10.3.1",
"@nestjs/platform-express": "^10.3.1",
"@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.3.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^18.16.19",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^26.6.3",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-createspyobj": "^2.0.0",
"prettier": "^2.8.4",
"pusher": "^5.1.2",
"prettier": "^3.2.4",
"pusher": "^5.2.0",
"pusher-js-mock": "^0.3.8",
"supertest": "^6.2.2",
"ts-jest": "^26.5.6",
"ts-loader": "^9.4.2",
"ts-morph": "^17.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.9.5"
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-morph": "^21.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"jest": {
"moduleFileExtensions": [
Expand All @@ -85,9 +85,9 @@
"testEnvironment": "node"
},
"peerDependencies": {
"@nestjs/common": "^10.0.4",
"@nestjs/core": "^10.0.4",
"pusher": "^5.1.3"
"@nestjs/common": "^10.3.1",
"@nestjs/core": "^10.3.1",
"pusher": "^5.2.0"
},
"volta": {
"node": "18.16.1"
Expand Down
Loading

0 comments on commit 46bf8a3

Please sign in to comment.