oramap/backend/package.json
dvirlabs fccd8a0166
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fix CI/CD: Add backend/package.json to repository
- Removed package.json from .gitignore (keep package-lock.json ignored)
- Added backend/package.json to git so CI/CD pipeline can build
- This fixes the 'ENOENT: no such file or directory' error in Kaniko build
2026-03-24 09:44:16 +02:00

18 lines
361 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"
},
"keywords": ["map", "family", "leaflet", "express"],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5"
}
}