21 lines
625 B
JSON
21 lines
625 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|