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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-scripts": "5.0.0",

Copilot AI Jan 31, 2026

Copy link

Choose a reason for hiding this comment

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

react-scripts 5.x requires Node 14+; this package.json doesn’t declare an engines constraint, so local dev/CI could accidentally run with an unsupported Node version and fail at install/build. Consider adding an "engines" entry (and/or updating your build tooling docs) to enforce the required Node range.

Copilot uses AI. Check for mistakes.

Copilot AI Jan 31, 2026

Copy link

Choose a reason for hiding this comment

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

This repo doesn’t appear to commit a lockfile (no yarn.lock/package-lock.json). With a security-driven upgrade like this, that means dependency resolution is non-deterministic and the fixed transitive versions aren’t pinned. Consider committing the appropriate lockfile and using a frozen/ci install mode (e.g., yarn --frozen-lockfile or npm ci) to make the remediation reproducible.

Copilot uses AI. Check for mistakes.
"reactstrap": "^8.10.0",
"web-vitals": "^1.1.1"
},
Expand Down