Two-app pnpm workspace for the gashboard (mining dashboard) project: @gashboard/api (Express 5 + TS) and @gashboard/web (Vue 3 + Vite + TS). Shared tsconfig.base.json. Multi-stage Dockerfile (node:22.12-alpine, non-root, healthchecked) and docker-compose.yml ready to deploy as a Portainer Stack on Umbrel — joins umbrel_main_network so it can reach the Datum container directly. .env.example documents every var; README covers the Portainer deploy flow and the security posture. Note: Dockerfile has a TODO marker to SHA256-pin the base image before shipping to production. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
27 lines
568 B
JSON
27 lines
568 B
JSON
{
|
|
"name": "@gashboard/web",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"applesauce-accounts": "5.1.0",
|
|
"applesauce-signers": "5.1.0",
|
|
"nostr-tools": "2.10.4",
|
|
"pinia": "2.3.0",
|
|
"vue": "3.5.13",
|
|
"vue-router": "4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "5.2.1",
|
|
"typescript": "5.7.2",
|
|
"vite": "6.0.3",
|
|
"vue-tsc": "2.1.10"
|
|
}
|
|
}
|