Files
narrow_casting_system/backend/package.json
Alvin-Zilverstand 50c0648476 🔧 Fix GitHub Actions CI/CD pipeline and improve project structure
- Split CI workflow into separate backend and admin testing jobs
- Fix package-lock.json caching issues with proper cache paths
- Update Docker configuration for better CI/CD integration
- Improve root package.json with comprehensive npm scripts
- Add proper build and test scripts for all components
- Fix Dockerfile to work correctly with GitHub Actions
- Add Docker BuildKit support for faster builds
- Organize project structure with deployment folder

This fixes the GitHub Actions error about missing package-lock.json
and improves the overall CI/CD pipeline for the project.
2026-01-19 10:05:57 +01:00

31 lines
837 B
JSON

{
"name": "snowworld-narrowcasting-backend",
"version": "1.0.0",
"description": "Backend server for SnowWorld narrowcasting system",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "node ../test_system.js",
"build": "echo 'Backend build complete'",
"lint": "echo 'Linting not configured'",
"clean": "rm -rf node_modules"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.2",
"cors": "^2.8.5",
"multer": "^1.4.5-lts.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.0",
"path": "^0.12.7",
"fs-extra": "^11.1.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.6.2"
},
"keywords": ["narrowcasting", "snowworld", "digital-signage"],
"author": "SnowWorld Development Team",
"license": "MIT"
}