-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 KB
/
package.json
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
56
57
58
59
60
61
{
"name": "bridges-server",
"scripts": {
"deploy:prod": "sls deploy --stage prod",
"serve": "sls offline start",
"build:aws": "sls package",
"test": "tsx ./src/adapters/test.ts",
"test-txs": "tsx ./src/utils/testAdapterHistorical.ts",
"ts": "tsc --noEmit",
"adapter": "export $(cat .env | xargs) && tsx ./src/utils/runAdapterHistorical.ts",
"aggregate": "export $(cat .env | xargs) && tsx ./src/utils/testaggregate.ts",
"daily-volume": "export $(cat .env | xargs) && tsx ./src/utils/testDailyVolume.ts",
"dev": "vite",
"build": "vite build",
"start": "node ./dist/index.js",
"start:dev": "node ./dist/index.js"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/aws-lambda": "^8.10.101",
"@types/js-yaml": "^4.0.9",
"@types/node": "^18.19.67",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "^3.0.6",
"@types/retry": "^0.12.5",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"serverless": "^3.21.0",
"serverless-esbuild": "^1.54.6",
"serverless-offline": "^12.0.0",
"serverless-prune-plugin": "^2.0.1",
"vite": "^6.0.1"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.637.0",
"@aws-sdk/client-s3": "^3.637.0",
"@defillama/sdk": "^5.0.94",
"@fastify/cors": "^9.0.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@solana/web3.js": "^1.87.3",
"async-retry": "^1.3.1",
"axios": "^0.21.0",
"axios-rate-limit": "^1.3.0",
"bignumber.js": "^9.0.1",
"cron": "^3.2.1",
"dayjs": "^1.11.13",
"dotenv": "^8.2.0",
"esbuild": "0.23.1",
"ethers": "^5",
"fastify": "^4.26.2",
"graphql": "^16.0.0",
"graphql-request": "^6.1.0",
"lru-cache": "^11.0.2",
"node-fetch": "^2.6.7",
"object-hash": "^3.0.0",
"postgres": "^3.2.4",
"tron-format-address": "^0.1.11",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}