unrip/package.json
philipp 75d7f64627
All checks were successful
deploy / deploy (push) Successful in 1m10s
Add quote lifecycle statistics chart
Proof: Added an ECharts stacked persisted quote lifecycle statistics chart with range controls, raised dashboard statistics loads to the existing 1000-row clamp, and covered the UI wiring with static regression assertions. Ran targeted dashboard tests, full npm test, and npm run operator-dashboard:build.

Assumptions: Persisted quote lifecycle statistics remain the durable source of truth for the chart; live counters stay separate until the history rollup refresh records them.

Still fake: Fee-aware PnL, quote size distributions, oracle-deviation analytics, and any already-pruned lifecycle detail remain out of scope; the chart can only show retained persisted statistics.
2026-06-12 20:34:41 +02:00

36 lines
1.3 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",
"assets:import": "node src/apps/supported-token-importer.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": {
"echarts": "^5.6.0",
"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"
}
}