Files
apartment-dashboard-api/package.json
Stephen Minakian 9153a2faf8
All checks were successful
Deploy Apartment API / deploy (push) Successful in 9m48s
Initial commit
2025-07-15 17:51:26 -06:00

31 lines
718 B
JSON

{
"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"
}
}