botAgentHub / apps /indexer /package.json
anand0x's picture
feat: init hf deploy
274aa98 unverified
Raw
History Blame Contribute Delete
717 Bytes
{
"name": "@bot-agent-hub/indexer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/server.ts",
"start": "node dist/server.js",
"lint": "echo \"No lint for indexer\"",
"test": "echo \"Add indexer tests\"",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@bot-agent-hub/shared": "workspace:*",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"pg": "^8.16.3",
"viem": "^2.33.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.19.41",
"@types/pg": "^8.15.5",
"tsx": "^4.20.3",
"typescript": "^5.9.3"
}
}