Skip to content

Commit 8a1baa1

Browse files
authored
build(deps): bump project dependencies (#899)
- [x] update project dependencies to the latest versions;
1 parent 0a25f49 commit 8a1baa1

File tree

37 files changed

+1435
-1017
lines changed

37 files changed

+1435
-1017
lines changed

.ncurc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"reject": ["typescript", "firebase", "firebase-admin", "@apollo/*"],
2+
"reject": ["typescript", "firebase", "firebase-admin", "@apollo/*", "apollo-upload-client"],
33
"timeout": 120000
44
}

apps/api/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Dependencies for docker containers running api application. Do not install dependencies in this directory. This file is only for containers.",
55
"dependencies": {
66
"@apollo/server": "5.0.0",
7-
"@grpc/grpc-js": "1.13.4",
7+
"@grpc/grpc-js": "1.14.0",
88
"@grpc/proto-loader": "0.8.0",
99
"@nestjs/apollo": "13.1.0",
1010
"@nestjs/axios": "4.0.1",
@@ -22,12 +22,12 @@
2222
"@nestjs/swagger": "11.2.0",
2323
"@nestjs/throttler": "6.4.0",
2424
"@nestjs/websockets": "11.1.6",
25-
"axios": "1.11.0",
26-
"cache-manager": "7.1.1",
25+
"axios": "1.12.2",
26+
"cache-manager": "7.2.0",
2727
"class-transformer": "0.5.1",
2828
"class-validator": "0.14.2",
2929
"compression": "1.8.1",
30-
"dotenv": "17.2.1",
30+
"dotenv": "17.2.2",
3131
"express": "5.1.0",
3232
"firebase-admin": "12.5.0",
3333
"firebase-functions": "6.4.0",
@@ -37,7 +37,7 @@
3737
"graphql-tag": "2.12.6",
3838
"graphql-tools": "9.0.20",
3939
"graphql-upload": "17.0.0",
40-
"grpc-web": "1.5.0",
40+
"grpc-web": "2.0.2",
4141
"protobufjs": "7.5.4",
4242
"reflect-metadata": "0.2.2",
4343
"rxjs": "7.8.2",

apps/server-prod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@nestjs/core": "11.1.6",
99
"@nestjs/platform-express": "11.1.6",
1010
"@nestjs/serve-static": "5.0.3",
11-
"axios": "1.11.0",
11+
"axios": "1.12.2",
1212
"compression": "1.8.1",
1313
"express": "5.1.0",
1414
"reflect-metadata": "0.2.2",

functions/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"start:emulators": "firebase emulators:start --only functions"
1515
},
1616
"dependencies": {
17-
"@grpc/grpc-js": "1.13.4",
17+
"@grpc/grpc-js": "1.14.0",
1818
"@grpc/proto-loader": "0.8.0",
1919
"@nestjs/apollo": "13.1.0",
2020
"@nestjs/throttler": "6.4.0",
@@ -31,18 +31,18 @@
3131
"@nestjs/swagger": "11.2.0",
3232
"@nestjs/websockets": "11.1.6",
3333
"@nestjs/cache-manager": "3.0.1",
34-
"cache-manager": "7.1.1",
34+
"cache-manager": "7.2.0",
3535
"@types/compression": "1.8.1",
3636
"@types/express": "5.0.3",
3737
"@types/graphql-upload": "17.0.0",
38-
"@types/node": "24.3.0",
38+
"@types/node": "24.5.2",
3939
"@types/websocket": "1.0.10",
4040
"@types/ws": "8.18.1",
4141
"@apollo/server": "5.0.0",
4242
"class-transformer": "0.5.1",
4343
"class-validator": "0.14.2",
4444
"compression": "1.8.1",
45-
"dotenv": "17.2.1",
45+
"dotenv": "17.2.2",
4646
"express": "5.1.0",
4747
"firebase-admin": "12.5.0",
4848
"firebase-functions": "6.4.0",
@@ -52,7 +52,7 @@
5252
"graphql-tag": "2.12.6",
5353
"graphql-tools": "9.0.20",
5454
"graphql-upload": "17.0.0",
55-
"grpc-web": "1.5.0",
55+
"grpc-web": "2.0.2",
5656
"reflect-metadata": "0.2.2",
5757
"rxjs": "7.8.2",
5858
"tslib": "2.8.1"

libs/client-chatbot/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"compiler": "swc",
3232
"configFile": "libs/client-chatbot/vitest.config.mts",
3333
"coverageProvider": "istanbul",
34-
"uiFramework": "angular"
34+
"uiFramework": "angular",
35+
"tsConfig": "libs/client-chatbot/tsconfig.lib.json"
3536
}
3637
},
3738
"tsc-check": {

libs/client-core-components/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"compiler": "swc",
5555
"configFile": "libs/client-core-components/vitest.config.mts",
5656
"coverageProvider": "istanbul",
57-
"uiFramework": "angular"
57+
"uiFramework": "angular",
58+
"tsConfig": "libs/client-core-components/tsconfig.lib.json"
5859
}
5960
},
6061
"tsc-check": {

libs/client-core/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"compiler": "swc",
3232
"configFile": "libs/client-core/vitest.config.mts",
3333
"coverageProvider": "istanbul",
34-
"uiFramework": "angular"
34+
"uiFramework": "angular",
35+
"tsConfig": "libs/client-core/tsconfig.lib.json"
3536
}
3637
},
3738
"tsc-check": {

libs/client-d3-charts/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
"compiler": "swc",
4848
"configFile": "libs/client-d3-charts/vitest.config.mts",
4949
"coverageProvider": "istanbul",
50-
"uiFramework": "angular"
50+
"uiFramework": "angular",
51+
"tsConfig": "libs/client-d3-charts/tsconfig.lib.json"
5152
}
5253
},
5354
"tsc-check": {

libs/client-dashboards/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
"compiler": "swc",
3232
"configFile": "libs/client-dashboards/vitest.config.mts",
3333
"coverageProvider": "istanbul",
34-
"uiFramework": "angular"
34+
"uiFramework": "angular",
35+
"tsConfig": "libs/client-dashboards/tsconfig.lib.json"
3536
}
3637
},
3738
"tsc-check": {

libs/client-diagnostics/project.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
"compiler": "swc",
5555
"configFile": "libs/client-diagnostics/vitest.config.mts",
5656
"coverageProvider": "istanbul",
57-
"uiFramework": "angular"
57+
"uiFramework": "angular",
58+
"tsConfig": "libs/client-diagnostics/tsconfig.lib.json"
5859
}
5960
},
6061
"tsc-check": {

0 commit comments

Comments
 (0)