initial config

This commit is contained in:
blaisadmin
2025-10-12 20:42:56 -04:00
parent a05ce5c33d
commit 33804043c6
19 changed files with 598 additions and 0 deletions

42
backend/package.json Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "archery-scoring-backend",
"version": "1.0.0",
"description": "Backend for archery scoring application",
"main": "dist/app.js",
"type": "module",
"scripts": {
"dev": "node --import tsx src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"migrate": "node --import tsx src/database/migrate.ts",
"seed": "node --import tsx src/database/seed.ts",
"test": "vitest",
"lint": "eslint src/"
},
"dependencies": {
"express": "4.18.2",
"cors": "2.8.5",
"dotenv": "16.3.1",
"pg": "8.11.3",
"redis": "4.6.12",
"jsonwebtoken": "9.0.2",
"bcryptjs": "2.4.3",
"zod": "3.22.4",
"uuid": "9.0.1",
"express-rate-limit": "7.1.5",
"helmet": "7.1.0",
"morgan": "1.10.0",
"axios": "1.6.2"
},
"devDependencies": {
"@types/node": "20.10.6",
"@types/express": "4.17.21",
"@types/bcryptjs": "2.4.6",
"@types/jsonwebtoken": "9.0.7",
"typescript": "5.3.3",
"tsx": "4.7.0",
"vitest": "1.1.0",
"supertest": "6.3.3",
"@types/supertest": "6.0.2"
}
}