Files
server-manager/backend/package.json
Ernie Butcher fd6194ecda
Some checks failed
continuous-integration/drone/push Build is failing
fix: add backend lockfile, replace bcrypt with bcryptjs, fix audit vulnerabilities
2026-03-18 17:16:37 -04:00

45 lines
1.1 KiB
JSON

{
"name": "server-manager-api",
"version": "1.0.0",
"description": "Backend API for Server Manager",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"db:migrate": "node dist/db/migrate.js"
},
"keywords": [
"api",
"server-management"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.5",
"@types/pg": "^8.11.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}