mirror of
https://github.com/Alvin-Zilverstand/narrow_casting_system.git
synced 2026-04-17 14:48:06 +02:00
28 lines
692 B
JSON
28 lines
692 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": "jest"
|
||
|
|
},
|
||
|
|
"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"
|
||
|
|
}
|