All checks were successful
deploy / deploy (push) Successful in 22s
Proof: Include operator dashboard auth module and runtime package manifest updates required for the deployed operator-dashboard and ops-sentinel processes to start successfully. Assumptions: React and ws belong in production dependencies because operator-dashboard now ships in the runtime image; operator-dashboard-auth is part of the deployed backend surface. Still fake: External alert receiver remains unconfigured; this commit only fixes rollout blockers for the runtime-health/dashboard deploy.
34 lines
1.2 KiB
JSON
34 lines
1.2 KiB
JSON
{
|
|
"name": "near-intents-monitor-poc",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"near-intents:ingest": "node src/apps/near-intents-ingest.mjs",
|
|
"market-reference:ingest": "node src/apps/market-reference-ingest.mjs",
|
|
"inventory:sync": "node src/apps/inventory-sync.mjs",
|
|
"liquidity:manager": "node src/apps/liquidity-manager.mjs",
|
|
"history:writer": "node src/apps/history-writer.mjs",
|
|
"ops:sentinel": "node src/apps/ops-sentinel.mjs",
|
|
"strategy:engine": "node src/apps/strategy-engine.mjs",
|
|
"trade:executor": "node src/apps/trade-executor.mjs",
|
|
"operator:dashboard": "node src/apps/operator-dashboard.mjs",
|
|
"operator-dashboard:build": "vite build --config vite.operator-dashboard.config.mjs",
|
|
"operator-dashboard:dev": "bash scripts/dev/operator-dashboard-dev.sh",
|
|
"operator-dashboard:forward": "bash scripts/dev/operator-dashboard-forward.sh",
|
|
"start": "node index.mjs",
|
|
"test": "node --test"
|
|
},
|
|
"dependencies": {
|
|
"kafkajs": "^2.2.4",
|
|
"near-api-js": "^7.2.0",
|
|
"pg": "^8.20.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"ws": "^8.20.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-react": "^5.1.0",
|
|
"vite": "^7.1.12"
|
|
}
|
|
}
|