Files
oldvine_cms/package.json
Talal Sharabi a3308a26e2 Initial commit: CMS backend for Old Vine Hotel
- Complete Express.js API server
- MongoDB integration with Mongoose
- Admin authentication and authorization
- Room management (CRUD operations)
- Booking management system
- Guest management
- Payment processing (Stripe integration)
- Content management (pages, blog, gallery)
- Media upload and management
- Integration services (Booking.com, Expedia, Opera PMS, Trip.com)
- Email notifications
- Comprehensive logging and error handling
2026-01-06 12:21:56 +04:00

52 lines
1.2 KiB
JSON

{
"name": "old-vine-hotel-server",
"version": "1.0.0",
"description": "Backend API for The Old Vine Hotel website",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"seed": "node scripts/seedDatabase.js",
"seed:admin": "node scripts/seedAdmin.js",
"seed:content": "node scripts/seedContent.js"
},
"keywords": [
"hotel",
"booking",
"api",
"nodejs",
"express"
],
"author": "MiniMax Agent",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.29.4",
"mongoose": "^8.0.3",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.7",
"sharp": "^0.34.5",
"stripe": "^14.7.0",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}