Skip to content
Merged
Show file tree
Hide file tree
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
54 changes: 38 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"form-data": "^4.0.0",
"form-data": "4.0.4",
"graphql": "^16.9.0",
"ini": "^3.0.1",
"lodash": "^4.17.21",
Expand Down Expand Up @@ -106,6 +106,10 @@
"test:jest:coverage": "jest --coverage",
"prepare": "husky"
},
"overrides": {
"axios": "~1.10.0",
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

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

The axios override uses a tilde range (~1.10.0) while form-data uses an exact version (4.0.4). This creates an inconsistency in versioning strategy within the overrides section. Consider using a consistent approach - either both should use exact versions for maximum predictability, or both should use ranges. Given that form-data is pinned to an exact version elsewhere in the file (line 40), it would be more consistent to use an exact version for axios as well (e.g., "1.10.0" instead of "~1.10.0").

Suggested change
"axios": "~1.10.0",
"axios": "1.10.0",

Copilot uses AI. Check for mistakes.
"form-data": "4.0.4"
},
"engines": {
"node": ">=14.0.0"
},
Expand Down