This commit is contained in:
blaisadmin
2026-03-25 21:54:50 -04:00
parent a34b585b21
commit 04c74de25a
30 changed files with 6854 additions and 6 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "arsenal-iq-backend",
"version": "1.0.0",
"description": "Backend for Arsenal IQ firearm and ammunition inventory",
"main": "dist/app.js",
"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.18.2",
"express-rate-limit": "7.1.5",
"helmet": "7.1.0",
"morgan": "1.10.0",
"pg": "8.11.3"
},
"devDependencies": {
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/morgan": "1.9.9",
"@types/node": "20.10.6",
"tsx": "4.7.0",
"typescript": "5.3.3"
}
}