Files
smom-dbis-138/services/token-aggregation/package.json
defiQUG 76143a8fe3 feat(token-aggregation): reports, PMM quotes, config; Engine X flash vaults
- Expand token-aggregation API (report routes), canonical tokens, pools
- Add flash vault contracts + tests (indexed, DODO cwUSDC, XAUT borrow)
- PMM pools JSON, deploy/export scripts, metamask verified list

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-10 12:56:30 -07:00

66 lines
2.1 KiB
JSON

{
"name": "token-aggregation-service",
"version": "1.0.0",
"description": "Token aggregation service for ChainID 138 and 651940 with external API enrichment",
"packageManager": "npm@10.8.2",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:ci": "jest --runInBand",
"test:omnl": "jest --runInBand --testPathPattern=omnl",
"lint": "eslint src --ext .ts",
"backfill:historical-pricing": "node dist/backfill-historical-pricing.js",
"generate:supply-proof-catalog": "ts-node scripts/generate-supply-proof-catalog.ts",
"generate:live-uniswap-v2-pool-catalog": "ts-node scripts/generate-live-uniswap-v2-pool-catalog.ts",
"generate:route-matrix:v2": "ts-node scripts/generate-route-matrix-v2.ts",
"migrate": "node -r dotenv/config dist/database/migrations.js",
"example:partner-payloads": "node scripts/resolve-partner-payloads-example.mjs",
"omnl:reconcile": "node scripts/omnl-reconcile-report.mjs"
},
"dependencies": {
"axios": "^1.15.2",
"bcrypt": "^6.0.0",
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"ethers": "^6.16.0",
"express": "^5.1.0",
"express-rate-limit": "^8.5.1",
"jsonwebtoken": "^9.0.3",
"node-cron": "^4.2.1",
"pg": "^8.18.0",
"winston": "^3.19.0"
},
"overrides": {
"ajv": "^6.14.0",
"brace-expansion": "^2.0.3",
"flatted": "^3.4.1",
"follow-redirects": "1.16.0",
"handlebars": "^4.7.9",
"minimatch": "^9.0.7",
"picomatch": "^2.3.2"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/compression": "^1.8.1",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.33",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}