Skip to content

Commit 8029987

Browse files
committed
fixing vulnerabilities, using nodejs 22.0.0 for development ( most stable )
1 parent 2096c7e commit 8029987

File tree

6 files changed

+256
-155
lines changed

6 files changed

+256
-155
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
nodejs 23.11.0
1+
nodejs 22.0.0
22
yarn 1.22.22

apps/api-gateway/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@nestjs/platform-express": "^10.4.9",
3535
"@nestjs/swagger": "^7.0.1",
3636
"@nestjs/terminus": "^10.0.0",
37-
"axios": "^1.7.4",
37+
"axios": "^1.12.0",
3838
"body-parser": "^1.20.3",
3939
"cookie-parser": "^1.4.6",
4040
"helmet": "^7.0.0",

apps/api/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"@langchain/openai": "^0.6.9",
3838
"@nestjs/axios": "^3.0.0",
3939
"@nestjs/class-validator": "^0.13.4",
40-
"@nestjs/cli": "^10.0.0",
4140
"@nestjs/common": "10.4.17",
4241
"@nestjs/config": "^3.0.0",
4342
"@nestjs/core": "10.4.17",
@@ -54,7 +53,7 @@
5453
"@types/nodemailer": "^6.4.17",
5554
"@types/pdf-parse": "^1.1.5",
5655
"aws-sdk": "^2.1692.0",
57-
"axios": "^1.7.4",
56+
"axios": "^1.12.0",
5857
"bottleneck": "^2.19.5",
5958
"bullmq": "^5.21.1",
6059
"chardet": "^2.1.0",
@@ -78,7 +77,7 @@
7877
"natural": "^8.0.1",
7978
"nest-winston": "^1.9.2",
8079
"node-xlsx": "^0.24.0",
81-
"nodemailer": "^7.0.5",
80+
"nodemailer": "^7.0.7",
8281
"octonode": "^0.10.2",
8382
"passport": "^0.7.0",
8483
"passport-jwt": "^4.0.1",
@@ -100,6 +99,7 @@
10099
},
101100
"devDependencies": {
102101
"@ianvs/prettier-plugin-sort-imports": "^4.0.2",
102+
"@nestjs/cli": "10.4.5",
103103
"@nestjs/schematics": "^10.0.0",
104104
"@nestjs/testing": "^10.0.0",
105105
"@types/cookie-parser": "^1.4.7",

apps/web/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,12 @@
5454
"font-awesome": "^4.7.0",
5555
"fuse.js": "^7.1.0",
5656
"highlight.js": "^11.9.0",
57+
"jsondiffpatch": "^0.7.2",
5758
"katex": "^0.16.21",
5859
"lucide-react": "^0.532.0",
5960
"marked": "^13.0.0",
6061
"mkdirp": "^3.0.1",
61-
"next": "^14.2.18",
62+
"next": "^14.2.32",
6263
"openai": "^4.91.1",
6364
"papaparse": "^5.4.1",
6465
"quill": "^2.0.2",

package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,18 @@
6767
"@types/natural": "^6.0.1",
6868
"@types/papaparse": "^5.3.15",
6969
"@types/pdf-parse": "^1.1.4",
70+
"axios": "^1.12.0",
7071
"cookie": "^0.7.0",
7172
"express": "^4.19.2",
7273
"framer-motion": "^11.8.0",
74+
"jsondiffpatch": "^0.7.2",
7375
"lottie-react": "^2.4.0",
7476
"mammoth": "^1.8.0",
7577
"marked": "^4.0.10",
7678
"natural": "^8.1.0",
77-
"next": "^14.2.18",
79+
"next": "^14.2.32",
7880
"node-fetch": "^2.6.7",
81+
"nodemailer": "^7.0.7",
7982
"papaparse": "^5.4.1",
8083
"pdfjs-dist": "^4.7.76",
8184
"prismjs": "1.30.0",
@@ -92,6 +95,8 @@
9295
"rehype-highlight": "^7.0.0",
9396
"remark": "^15.0.1",
9497
"tailwind-scrollbar-hide": "^2.0.0",
98+
"tar-fs": "^3.1.1",
99+
"tmp": "^0.2.4",
95100
"tsparticles": "^3.5.0",
96101
"undici": "6.21.2",
97102
"zod": "^3.23.5"
@@ -106,6 +111,9 @@
106111
"resolutions": {
107112
"**/express": "^4.19.2",
108113
"**/body-parser": "^1.20.3",
114+
"tmp": "^0.2.4",
115+
"tar-fs": "^3.1.1",
116+
"jsondiffpatch": "^0.7.2",
109117
"prismjs": "^1.30.0",
110118
"node-fetch": "^2.6.7",
111119
"tough-cookie": "^4.1.3",

0 commit comments

Comments
 (0)