Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions upload-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@
"@aws-sdk/client-s3": "^3.529.0",
"@contentstack/cli-utilities": "^1.14.2",
"@typescript-eslint/parser": "^8.0.0",
"axios": "^1.12.0",
"axios": "^1.13.5",
"body-parser": "^2.2.1",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint": "^9.0.0",
"eslint": "^10.0.0",
Copy link

Copilot AI Feb 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade to eslint version 10.0.0 is problematic because the current @typescript-eslint packages (version 8.x) only support eslint versions ^8.57.0 || ^9.0.0, which does not include version 10.x. This will cause peer dependency conflicts and the TypeScript ESLint parser and plugins will not work correctly. Additionally, eslint version 10.0.0 may not exist yet as of the current date. The latest stable eslint version as of January 2025 was 9.x. Consider updating to a version that is compatible with the @typescript-eslint packages or wait for updated @typescript-eslint packages that support eslint 10.x.

Suggested change
"eslint": "^10.0.0",
"eslint": "^9.0.0",

Copilot uses AI. Check for mistakes.
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^5.0.0",
"express": "^5.2.1",
Expand All @@ -61,7 +61,7 @@
"node-fetch": "^2.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.3.3",
"qs": "^6.14.1",
"qs": "^6.14.2",
"tmp": "^0.2.5",
"uuid": "^9.0.1",
"xml2js": "^0.6.2"
Expand Down