Initial commit
All checks were successful
Deploy Apartment API / deploy (push) Successful in 9m48s

This commit is contained in:
2025-07-15 17:51:26 -06:00
commit 9153a2faf8
7 changed files with 2056 additions and 0 deletions

31
package.json Normal file
View File

@ -0,0 +1,31 @@
{
"name": "apartment-api",
"version": "1.0.0",
"description": "API backend for Country Club Towers & Gardens apartment dashboard",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"apartments",
"api",
"real-estate",
"monitoring"
],
"author": "Stephen",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"mongodb": "^6.3.0",
"cors": "^2.8.5",
"express-rate-limit": "^7.1.5"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}