Initial app

This commit is contained in:
blaisadmin
2026-04-06 23:36:12 -04:00
parent 9405327f74
commit 68ab8b12d2
20 changed files with 5626 additions and 152 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"name": "flockpal-backend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node --import tsx src/app.ts",
"build": "tsc",
"start": "node dist/app.js"
},
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.21.2",
"express-rate-limit": "7.5.0",
"helmet": "8.1.0",
"morgan": "1.10.0",
"pg": "8.13.1",
"zod": "3.24.1"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/morgan": "1.9.9",
"@types/node": "22.10.2",
"@types/pg": "8.11.10",
"tsx": "4.19.2",
"typescript": "5.7.2"
}
}