-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "aave-markets-data",
"version": "1.0.0",
"description": "Fetch Aave market data using TypeScript SDK",
"keywords": [
"aave",
"defi",
"typescript",
"markets"
],
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"start": "node dist/index.js",
"ci": "npm ci && npm run build && npm run prune && cd backend && npm ci && npm run build && npm run prune",
"ci:remote": "npm run ci && npm run audit",
"ci:auto-fix": "npm audit fix --omit=dev || true && npm --prefix backend audit fix --omit=dev || true",
"deploy": "./deploy.sh",
"mcp:context7": "node .cursor/context7-server.js",
"audit": "npm audit --omit=dev --audit-level=high >/tmp/_audit1 2>&1; head -1 /tmp/_audit1 | grep -qE '^found|^# npm audit report' || { cat /tmp/_audit1 >&2; exit 1; }; grep -oE 'GHSA-[a-z0-9-]+' /tmp/_audit1 | sort -u | grep -vE 'GHSA-848j-6mx2-7j84|GHSA-58qx-3vcg-4xpx' | grep -q . && exit 1; npm --prefix backend audit --omit=dev --audit-level=moderate >/tmp/_audit2 2>&1; head -1 /tmp/_audit2 | grep -qE '^found|^# npm audit report' || { cat /tmp/_audit2 >&2; exit 1; }; grep -oE 'GHSA-[a-z0-9-]+' /tmp/_audit2 | sort -u | grep -vE 'GHSA-848j-6mx2-7j84|GHSA-58qx-3vcg-4xpx' | grep -q . && exit 1; exit 0",
"prune": "ts-prune -i '.*aave-shared-config/index\\.d\\.ts' 2>&1 | (grep -v '(used in module)' | grep -q . && exit 1 || exit 0)",
"sync:coingecko-platform-map": "tsx scripts/sync-coingecko-platform-map.ts"
},
"dependencies": {
"@aave/client": "^0.6.1",
"@bgd-labs/aave-address-book": "^4.44.22",
"@internal/aave-shared-config": "file:packages/aave-shared-config",
"@modelcontextprotocol/sdk": "^1.26.0",
"@types/puppeteer": "^5.4.7",
"cheerio": "^1.1.2",
"dotenv": "^17.3.1",
"node-fetch": "^3.3.2",
"puppeteer": "^24.35.0",
"winston": "^3.19.0",
"zod": "^4.3.6"
},
"overrides": {
"axios": "^1.13.5",
"h3": "^1.15.5",
"hono": "^4.11.9",
"preact": "^10.28.3"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^25.4.0",
"ts-prune": "^0.10.3",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}