fix: add backend lockfile, replace bcrypt with bcryptjs, fix audit vulnerabilities
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Ernie Butcher
2026-03-18 17:16:37 -04:00
parent 38f4078bd8
commit fd6194ecda
2 changed files with 3671 additions and 14 deletions

3654
backend/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -10,32 +10,35 @@
"lint": "eslint src --ext .ts", "lint": "eslint src --ext .ts",
"db:migrate": "node dist/db/migrate.js" "db:migrate": "node dist/db/migrate.js"
}, },
"keywords": ["api", "server-management"], "keywords": [
"api",
"server-management"
],
"author": "", "author": "",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"express": "^4.18.2", "bcryptjs": "^3.0.3",
"pg": "^8.11.3",
"dotenv": "^16.4.5",
"cors": "^2.8.5", "cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"helmet": "^7.1.0", "helmet": "^7.1.0",
"morgan": "^1.10.0",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2", "jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"zod": "^3.22.4" "zod": "^3.22.4"
}, },
"devDependencies": { "devDependencies": {
"@types/express": "^4.17.21", "@types/bcryptjs": "^2.4.6",
"@types/pg": "^8.11.0",
"@types/cors": "^2.8.17", "@types/cors": "^2.8.17",
"@types/morgan": "^1.9.9", "@types/express": "^4.17.21",
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.5", "@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5", "@types/node": "^20.11.5",
"typescript": "^5.3.3", "@types/pg": "^8.11.0",
"tsx": "^4.7.0", "@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^8.56.0", "eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.19.1", "tsx": "^4.7.0",
"@typescript-eslint/parser": "^6.19.1" "typescript": "^5.3.3"
} }
} }