try this shi

This commit is contained in:
2025-10-13 13:53:48 -05:00
commit fc6d1237e9
24 changed files with 1345 additions and 0 deletions

19
backend/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "mc-dashboard-backend",
"version": "1.0.0",
"description": "Minecraft Server Dashboard Backend",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"minecraft-server-util": "^5.4.3",
"modern-rcon": "^1.2.1",
"dockerode": "^4.0.2"
}
}