41 lines
955 B
JSON
41 lines
955 B
JSON
{
|
|
"name": "vip-coordinator-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend API for VIP Coordinator Dashboard",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"build": "tsc",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"keywords": [
|
|
"vip",
|
|
"coordinator",
|
|
"dashboard",
|
|
"api"
|
|
],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"jwks-rsa": "^3.2.0",
|
|
"pg": "^8.11.3",
|
|
"redis": "^4.6.8",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.13",
|
|
"@types/express": "^4.17.17",
|
|
"@types/jsonwebtoken": "^9.0.2",
|
|
"@types/node": "^20.5.0",
|
|
"@types/pg": "^8.10.2",
|
|
"@types/uuid": "^9.0.2",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.1.6"
|
|
}
|
|
}
|