Files
defiQUG fcd55aa9c4
Some checks failed
CI/CD Pipeline / Solidity Contracts (pull_request) Failing after 1m6s
CI/CD Pipeline / Security Scanning (pull_request) Successful in 12m42s
CI/CD Pipeline / Lint and Format (pull_request) Failing after 42s
CI/CD Pipeline / Terraform Validation (pull_request) Failing after 25s
CI/CD Pipeline / Kubernetes Validation (pull_request) Successful in 27s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (pull_request) Failing after 49s
OMNL reconcile anchor / Run omnl:reconcile and upload artifacts (pull_request) Failing after 26s
Validation / validate-genesis (pull_request) Successful in 36s
Validation / validate-terraform (pull_request) Failing after 28s
Validation / validate-kubernetes (pull_request) Failing after 12s
Validation / validate-smart-contracts (pull_request) Failing after 13s
Validation / validate-security (pull_request) Failing after 1m39s
Validation / validate-documentation (pull_request) Failing after 18s
feat(token-aggregation): add historical pricing context, backfill, and indexer hardening
2026-04-25 23:45:07 -07:00

64 lines
2.0 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: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.4.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"
}
}