All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
- Integrated MongoDB 7.0 with Mongoose ODM - Added CRUD API endpoints (GET, POST, PUT, DELETE) - Created Family model with validation - Added database seeding script with initial data - Implemented Add Family modal form in frontend - Updated docker-compose with MongoDB service - Updated Helm chart to v0.3.0 with MongoDB StatefulSet - Updated documentation with MongoDB setup instructions
21 lines
473 B
JSON
21 lines
473 B
JSON
{
|
|
"name": "oramap-backend",
|
|
"version": "1.0.0",
|
|
"description": "Ora Map Backend Server",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node server.js",
|
|
"seed": "node scripts/seed.js",
|
|
"seed:force": "node scripts/seed.js --force"
|
|
},
|
|
"keywords": ["map", "family", "leaflet", "express"],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"mongoose": "^7.6.0"
|
|
}
|
|
}
|