Files
Final_PGA/backend/package.json
2026-03-19 18:00:46 +07:00

33 lines
747 B
JSON

{
"name": "@pg-admin/backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"test": "tsx --test tests/**/*.test.ts"
},
"dependencies": {
"argon2": "^0.41.1",
"cookie": "^1.0.2",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"pg": "^8.16.3",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/cookie": "^1.0.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.0.10",
"@types/pg": "^8.15.5",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}