Files
narrow_casting_system/backend/package.json
2026-03-24 13:10:26 +00:00

31 lines
832 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.21.2",
"socket.io": "^4.8.1",
"cors": "^2.8.5",
"multer": "^2.0.1",
"sqlite3": "^6.0.1",
"uuid": "^11.0.3",
"path": "^0.12.7",
"fs-extra": "^11.2.0"
},
"devDependencies": {
"nodemon": "^3.1.7",
"jest": "^29.7.0"
},
"keywords": ["narrowcasting", "snowworld", "digital-signage"],
"author": "SnowWorld Development Team",
"license": "MIT"
}