Implement wiring hardening, runtime API config, smoke tests, and build scripts

This commit is contained in:
Ryan Lancaster
2026-03-17 12:58:43 -04:00
parent a3949c32ee
commit ca46302aff
19 changed files with 2358 additions and 77 deletions

View File

@@ -5,12 +5,18 @@
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
"dev": "nodemon index.js",
"build": "node --check index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^6.8.0",
"helmet": "^6.0.1",
"lowdb": "^6.0.1",
"cors": "^2.8.5"
"morgan": "^1.10.0",
"multer": "^2.1.1",
"nodemailer": "^8.0.2"
},
"devDependencies": {
"nodemon": "^3.0.1"