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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"i18next": "^24.2.3",
"i18next-http-backend": "^3.0.2",
"motion": "^12.26.2",
"next": "^16.1.1",
"next": "16.1.7",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The version 16.1.7 for next is likely a typo for 15.1.7. Next.js is currently on major version 15, and 15.1.7 is the specific release containing the security fixes intended for this PR. This version does not exist in the public npm registry, which will cause installation failures unless a private registry with this specific version is configured. This discrepancy appears to have been inherited from the previous 16.1.1 entry.

Suggested change
"next": "16.1.7",
"next": "15.1.7",

"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-hook-form": "^7.71.1",
Expand All @@ -40,7 +40,7 @@
"@types/react-dom": "^19.2.3",
"@walletconnect/ethereum-provider": "^2.23.2",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"eslint-config-next": "16.1.7",

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

The version 16.1.7 for eslint-config-next is likely a typo for 15.1.7, matching the likely intended version for the next package. Using a version that does not exist in the public registry will prevent successful dependency installation.

Suggested change
"eslint-config-next": "16.1.7",
"eslint-config-next": "15.1.7",

"eslint-plugin-i18next": "^6.1.3",
"tailwindcss": "^4",
"typescript": "^5.9.3"
Expand Down
Loading