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
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=18.0.0"
"node": ">=20.0.0"
},
"sideEffects": [
"**/*.css",
Expand All @@ -31,23 +31,24 @@
"react": "^18.3.1",
"react-chartjs-2": "^5.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3",
"react-router-dom": "^7.14.2",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Badge Raise the declared Node engine to match upgraded deps

This upgrade pulls in Node-20-only packages (react-router-dom@7.14.2 and @vitejs/plugin-react@5.2.0), but package.json still advertises "node": ">=18.0.0"; that mismatch will break installs/builds for teams or CI still on Node 18 (especially with engine-strict), even though the project claims that version is supported. Please bump the engine floor (and related docs/CI) or pin these deps to Node-18-compatible versions.

Useful? React with 👍 / 👎.

"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.7.0",
"@tailwindcss/vite": "^4.2.4",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.0",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.26",
"postcss": "^8.5.12",
"tailwindcss": "^3.4.19",
"postcss": "^8.5.13",
"tailwindcss": "^4.2.4",
"terser": "^5.46.2",
"typescript": "^5.9.3",
"typescript": "^6.0.3",
"vite": "^5.4.21",
"vitest": "^1.6.1"
}
Expand Down
Loading
Loading