Skip to content

Commit 31eae6e

Browse files
Fixing CVEs (#264)
* Upgrading tar to address CVEs * Upgraded lodash too * Updated * Updated all the affected packages
1 parent 8bc81cf commit 31eae6e

File tree

4 files changed

+612
-363
lines changed

4 files changed

+612
-363
lines changed

conanio/next-env.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
6+
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

conanio/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,13 @@
1313
"test:ci": "jest --ci"
1414
},
1515
"dependencies": {
16+
"@isaacs/brace-expansion": "^5.0.1",
1617
"bootstrap": "^5.3.3",
18+
"diff": "^5.2.2",
1719
"highlight.js": "11.8.0",
1820
"install": "^0.13.0",
19-
"next": "^14.2.35",
21+
"lodash": "^4.17.23",
22+
"next": "^15.5.10",
2023
"npm": "^8.12.0",
2124
"react": "19.2.1",
2225
"react-bootstrap": "^2.4.0",
@@ -30,7 +33,7 @@
3033
"recharts": "^2.1.10",
3134
"slick-carousel": "^1.8.1",
3235
"swr": "^1.3.0",
33-
"tar": "^7.5.3"
36+
"tar": "^7.5.7"
3437
},
3538
"devDependencies": {
3639
"@testing-library/jest-dom": "5.16.4",
@@ -39,7 +42,7 @@
3942
"@types/react": "19.2.1",
4043
"@types/react-dom": "19.2.1",
4144
"eslint": "^8.56.0",
42-
"eslint-config-next": "^14.2.35",
45+
"eslint-config-next": "^15.5.10",
4346
"eslint-config-prettier": "^9.1.0",
4447
"jest": "28.1.0",
4548
"jest-environment-jsdom": "29.7.0",

conanio/tsconfig.json

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,23 @@
2020
"downlevelIteration": true,
2121
"baseUrl": ".",
2222
"paths": {
23-
"@/styles/*": ["styles/*"],
24-
"@/components/*": ["components/*"],
25-
"@/components": ["components"],
26-
"@/service/*": ["service/*"],
27-
"@/service": ["service"]
28-
}
23+
"@/styles/*": [
24+
"styles/*"
25+
],
26+
"@/components/*": [
27+
"components/*"
28+
],
29+
"@/components": [
30+
"components"
31+
],
32+
"@/service/*": [
33+
"service/*"
34+
],
35+
"@/service": [
36+
"service"
37+
]
38+
},
39+
"target": "ES2017"
2940
},
3041
"include": [
3142
"next-env.d.ts",

0 commit comments

Comments
 (0)