Initial Product release

This commit is contained in:
2026-07-13 21:44:49 +01:00
parent 2d3ff69c6e
commit 0837f4f529
84 changed files with 13174 additions and 36 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"name": "pulse-signage",
"version": "1.0.0",
"private": true,
"description": "Pulse Signage application with MySQL and media uploads",
"main": "src/server.js",
"scripts": {
"start": "node -r dotenv/config src/webui.js",
"start:webui": "node -r dotenv/config src/webui.js",
"start:player": "node -r dotenv/config src/player.js",
"dev:webui": "nodemon -r dotenv/config src/webui.js",
"dev:player": "nodemon -r dotenv/config src/player.js"
},
"dependencies": {
"dotenv": "^17.4.2",
"express": "^4.21.2",
"handlebars": "^4.7.8",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.14.3",
"ws": "^8.21.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}