Version 0.4

This commit is contained in:
2026-04-16 23:08:23 +01:00
parent e011afbff1
commit 39eb818e7e
110 changed files with 18905 additions and 14 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "arcane-status",
"version": "0.4.0",
"description": "Self-hosted status page for your services",
"main": "index.js",
"scripts": {
"start": "cd backend && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd backend && npm start",
"client": "cd frontend && npm start",
"build": "cd frontend && npm run build",
"install-all": "npm install && cd backend && npm install && cd ../frontend && npm install"
},
"keywords": ["status", "page", "monitoring"],
"author": "",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1"
}
}