Skip to content

Commit 14ce895

Browse files
fix(deps): update all dependencies
1 parent 778fa1e commit 14ce895

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
strategy:
1515
matrix:
1616
node: ['18.13.0', '20.9.0']

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '3.8'
33
services:
44
postgres:
55
container_name: postgres_container
6-
image: postgres:16.2-alpine3.19
6+
image: postgres:17.2-alpine3.19
77
environment:
88
POSTGRES_USER: ${POSTGRES_USER:-postgres}
99
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
@@ -19,7 +19,7 @@ services:
1919

2020
pgadmin:
2121
container_name: pgadmin_container
22-
image: dpage/pgadmin4:8.3
22+
image: dpage/pgadmin4:9.1
2323
environment:
2424
PGADMIN_DEFAULT_EMAIL: ${PGADMIN_DEFAULT_EMAIL:[email protected]}
2525
PGADMIN_DEFAULT_PASSWORD: ${PGADMIN_DEFAULT_PASSWORD:-admin}

package.json

+33-33
Original file line numberDiff line numberDiff line change
@@ -27,52 +27,52 @@
2727
"test:watch": "jest --watch"
2828
},
2929
"dependencies": {
30-
"@nestjs/common": "10.3.3",
31-
"@nestjs/config": "3.2.0",
32-
"@nestjs/core": "10.3.3",
33-
"@nestjs/platform-express": "10.3.3",
34-
"@nestjs/swagger": "7.3.0",
35-
"@nestjs/typeorm": "10.0.2",
36-
"joi": "17.12.1",
37-
"pg": "8.11.3",
38-
"reflect-metadata": "0.2.1",
39-
"rimraf": "5.0.5",
40-
"rxjs": "7.8.1",
30+
"@nestjs/common": "11.0.11",
31+
"@nestjs/config": "4.0.0",
32+
"@nestjs/core": "11.0.11",
33+
"@nestjs/platform-express": "11.0.11",
34+
"@nestjs/swagger": "11.0.6",
35+
"@nestjs/typeorm": "11.0.0",
36+
"joi": "17.13.3",
37+
"pg": "8.13.3",
38+
"reflect-metadata": "0.2.2",
39+
"rimraf": "6.0.1",
40+
"rxjs": "7.8.2",
4141
"typeorm": "0.3.20"
4242
},
4343
"devDependencies": {
44-
"@commitlint/cli": "18.6.1",
45-
"@commitlint/config-conventional": "18.6.2",
46-
"@nestjs/cli": "10.3.2",
47-
"@nestjs/schematics": "10.1.1",
48-
"@nestjs/testing": "10.3.3",
49-
"@types/express": "4.17.21",
50-
"@types/jest": "29.5.12",
51-
"@types/node": "20.11.19",
44+
"@commitlint/cli": "19.7.1",
45+
"@commitlint/config-conventional": "19.7.1",
46+
"@nestjs/cli": "11.0.5",
47+
"@nestjs/schematics": "11.0.1",
48+
"@nestjs/testing": "11.0.11",
49+
"@types/express": "5.0.0",
50+
"@types/jest": "29.5.14",
51+
"@types/node": "22.13.8",
5252
"@types/supertest": "6.0.2",
53-
"@typescript-eslint/eslint-plugin": "7.0.1",
54-
"@typescript-eslint/parser": "7.0.1",
55-
"commitizen": "4.3.0",
53+
"@typescript-eslint/eslint-plugin": "8.25.0",
54+
"@typescript-eslint/parser": "8.25.0",
55+
"commitizen": "4.3.1",
5656
"cz-conventional-changelog": "3.3.0",
57-
"eslint": "8.56.0",
58-
"eslint-config-prettier": "9.1.0",
59-
"eslint-plugin-import": "2.29.1",
60-
"husky": "9.0.11",
57+
"eslint": "9.21.0",
58+
"eslint-config-prettier": "10.0.2",
59+
"eslint-plugin-import": "2.31.0",
60+
"husky": "9.1.7",
6161
"jest": "29.7.0",
62-
"lint-staged": "15.2.2",
63-
"prettier": "3.2.5",
64-
"supertest": "6.3.4",
65-
"ts-jest": "29.1.2",
66-
"ts-loader": "9.5.1",
62+
"lint-staged": "15.4.3",
63+
"prettier": "3.5.2",
64+
"supertest": "7.0.0",
65+
"ts-jest": "29.2.6",
66+
"ts-loader": "9.5.2",
6767
"ts-node": "10.9.2",
6868
"tsconfig-paths": "4.2.0",
69-
"typescript": "5.3.3"
69+
"typescript": "5.8.2"
7070
},
7171
"optionalDependencies": {
7272
"fsevents": "2.3.3"
7373
},
7474
"engines": {
75-
"node": "^18.13.0 || ^20.9.0",
75+
"node": "^18.13.0 || ^20.9.0 || ^22.0.0",
7676
"npm": ">=8.0.0"
7777
}
7878
}

0 commit comments

Comments
 (0)