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
57 changes: 36 additions & 21 deletions backend/package-lock.json

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

4 changes: 2 additions & 2 deletions backend/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{

Check warning on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Warning

Artifact "eslint" 6.8.0 is vulnerable to GHSA-p5wg-g6qr-c7cg - eslint has a Stack Overflow when serializing objects with circular references. Vulnerability score: 5.5 (medium).

Check failure on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Error

Artifact "jws" 3.2.2 is vulnerable to CVE-2025-65945 - auth0/node-jws Improperly Verifies HMAC Signature. Vulnerability score: 7.5 (high).

Check warning on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Warning

Artifact "lodash" 4.17.21 is vulnerable to CVE-2025-13465 - Lodash has Prototype Pollution Vulnerability in `_.unset` and `_.omit` functions. Vulnerability score: 6.5 (medium).

Check failure on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Error

Artifact "qs" 6.13.0 is vulnerable to CVE-2025-15284 - qs's arrayLimit bypass in its bracket notation allows DoS via memory exhaustion. Vulnerability score: 7.5 (high).

Check failure on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Error

Artifact "qs" 6.14.0 is vulnerable to CVE-2025-15284 - qs's arrayLimit bypass in its bracket notation allows DoS via memory exhaustion. Vulnerability score: 7.5 (high).

Check warning on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Warning

Artifact "tmp" 0.0.33 is vulnerable to CVE-2025-54798 - tmp allows arbitrary temporary file / directory write via symbolic link `dir` parameter. Vulnerability score: 2.5 (low).

Check failure on line 1 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Error

Artifact "underscore" 1.8.3 is vulnerable to CVE-2021-23358 - Arbitrary Code Execution in underscore. Vulnerability score: 9.8 (critical).
"name": "turning-wheel-backend",
"version": "1.0.0",
"description": "Secure full-stack backend for The Turning Wheel application with E2E encryption",
Expand All @@ -22,7 +22,7 @@
"docker:run": "docker run -p 8080:8080 turning-wheel-backend"
},
"dependencies": {
"express": "^4.18.2",
"express": "^4.22.1",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"cors": "^2.8.5",
Expand All @@ -33,7 +33,7 @@
"joi": "^17.11.0",
"express-validator": "^7.3.0",
"express-slow-down": "^2.0.1",
"express-brute": "^1.0.1",

Check warning on line 36 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Warning

Artifact "express-brute" 1.0.1 is vulnerable to GHSA-984p-xq9m-4rjw - Rate Limiting Bypass in express-brute. Vulnerability score: 5.6 (medium).
"pg": "^8.11.3",
"pg-pool": "^3.6.1",
"redis": "^4.6.10",
Expand All @@ -46,7 +46,7 @@
"node-cron": "^3.0.3",
"multer": "^2.0.2",
"sharp": "^0.32.6",
"nodemailer": "^7.0.7",
"nodemailer": "^7.0.11",
"socket.io": "^4.7.4",
"express-session": "^1.17.3",
"connect-redis": "^7.1.0",
Expand All @@ -62,7 +62,7 @@
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"eslint": "^8.54.0",

Check warning on line 65 in backend/package.json

View check run for this annotation

Codeac.io / Codeac Code Quality

NPM Vulnerability Warning

Artifact "eslint" 8.57.1 is vulnerable to GHSA-p5wg-g6qr-c7cg - eslint has a Stack Overflow when serializing objects with circular references. Vulnerability score: 5.5 (medium).
"eslint-config-node": "^4.1.0",
"eslint-plugin-security": "^1.7.1",
"prettier": "^3.1.0",
Expand Down
Loading