Skip to content

Commit

Permalink
fix: pin all dependencies and migrate eslint to v9 (#145)
Browse files Browse the repository at this point in the history
* fix: pin all dependencies and migrate eslint to v9

* fix: lockfile

* fix: format
  • Loading branch information
invertedEcho authored Dec 7, 2024
1 parent 7175392 commit ed39c6c
Show file tree
Hide file tree
Showing 9 changed files with 998 additions and 1,034 deletions.
27 changes: 0 additions & 27 deletions backend/.eslintrc.js

This file was deleted.

9 changes: 9 additions & 0 deletions backend/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

export default tseslint.config(
eslint.configs.recommended,
tseslint.configs.recommended,
);
82 changes: 42 additions & 40 deletions backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,50 +26,52 @@
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/schedule": "^4.0.2",
"@nestjs/serve-static": "^4.0.2",
"bcrypt": "^5.1.1",
"@nestjs/common": "10.0.0",
"@nestjs/core": "10.0.0",
"@nestjs/jwt": "10.2.0",
"@nestjs/platform-express": "10.0.0",
"@nestjs/schedule": "4.0.2",
"@nestjs/serve-static": "4.0.2",
"bcrypt": "5.1.1",
"drizzle-orm": "0.37.0",
"pg": "^8.11.5",
"postgres": "^3.4.4",
"reflect-metadata": "^0.2.0",
"socket.io": "^4.7.5",
"zod": "^3.23.4"
"pg": "8.11.5",
"postgres": "3.4.4",
"reflect-metadata": "0.2.0",
"socket.io": "4.7.5",
"zod": "3.23.4"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/platform-socket.io": "^10.4.1",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.3.9",
"@nestjs/websockets": "^10.4.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dotenv-cli": "^7.4.2",
"@eslint/js": "9.16.0",
"@nestjs/cli": "10.0.0",
"@nestjs/platform-socket.io": "10.4.1",
"@nestjs/schematics": "10.0.0",
"@nestjs/testing": "10.3.9",
"@nestjs/websockets": "10.4.1",
"@types/bcrypt": "5.0.2",
"@types/express": "4.17.17",
"@types/jest": "29.5.2",
"@types/node": "20.3.1",
"@types/supertest": "6.0.0",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"dotenv-cli": "7.4.2",
"drizzle-kit": "0.29.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"pm2": "^5.4.0",
"prettier": "^3.0.0",
"run-script-webpack-plugin": "^0.2.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.3",
"typescript": "^5.1.3"
"eslint": "9.16.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.0",
"jest": "29.5.0",
"pm2": "5.4.0",
"prettier": "3.0.0",
"run-script-webpack-plugin": "0.2.0",
"source-map-support": "0.5.21",
"supertest": "6.3.3",
"ts-jest": "29.1.0",
"ts-loader": "9.4.3",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tsx": "4.7.3",
"typescript": "5.1.3",
"typescript-eslint": "8.17.0"
},
"jest": {
"moduleFileExtensions": [
Expand Down
Loading

0 comments on commit ed39c6c

Please sign in to comment.