Skip to content
Open
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
18 changes: 14 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/express": "^4.17.14",
"@types/node": "^18.15.11",
"@types/node": "^18.19.123",

Choose a reason for hiding this comment

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

high

There appears to be a mismatch between the project's Node.js runtime version and the version of @types/node. The Dockerfile specifies a base image for Node.js v16 (node:16.3.0-alpine), but this dependency is being upgraded to a version for Node.js v18. Using type definitions for a different major version of Node.js can lead to incorrect autocompletion and type-checking, suggesting APIs that are not available in your runtime. This can cause difficult-to-debug runtime errors. It is strongly recommended to align the major version of @types/node with the target Node.js version to ensure type safety.

Suggested change
"@types/node": "^18.19.123",
"@types/node": "^16.18.97",

"agenda": "^4.3.0",
"ajv": "^6.12.6",
"ajv-errors": "^1.0.1",
Expand Down
Loading