unrip/package.json
philipp 2ffa4b17f1
Some checks failed
deploy / deploy (push) Failing after 34s
Move trading config into Postgres
Proof: npm test passed 159/159; npm run operator-dashboard:build passed; repo-local Postgres importer smoke test imported 163 live 1Click tokens with only 3 inventory-enabled seed assets and nBTC/EURe pairs at 49 bps.

Assumptions: Forgejo main push is the repo deployment path; production has existing repo-managed POSTGRES_URL/POSTGRES_PASSWORD/NEAR_INTENTS_API_KEY secrets; startup seed may create initial current nBTC/EURe config but must preserve DB runtime pair flags after creation.

Still fake: no live funds movement was attempted; imported supported assets remain catalog-only unless explicitly enabled in DB; production rollout evidence still depends on the Forgejo deploy job completing after this push.
2026-05-12 21:34:58 +02:00

35 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": {
"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"
}
}