forked from DefiLlama/bridges-server
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.56 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
{
"scripts": {
"deploy:prod": "export NODE_OPTIONS=--max-old-space-size=10240 && sls deploy --stage prod",
"serve": "sls offline start",
"build": "export NODE_OPTIONS=--max-old-space-size=10240 && sls webpack",
"test": "tsx ./src/adapters/test.ts",
"test-txs": "tsx ./src/utils/testAdapterHistorical.ts",
"ts": "tsc --noEmit",
"adapter": "export $(cat .env.test | xargs) && tsx ./src/utils/runAdapterHistorical.ts",
"aggregate": "export $(cat .env.test | xargs) && tsx ./src/utils/testaggregate.ts",
"daily-volume": "export $(cat .env.test | xargs) && tsx ./src/utils/testDailyVolume.ts"
},
"devDependencies": {
"@types/async-retry": "^1.4.8",
"@types/aws-lambda": "^8.10.101",
"@types/node": "^18.6.4",
"@types/node-fetch": "^2.6.2",
"@types/retry": "^0.12.5",
"babel-loader": "^8.2.5",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1",
"serverless": "^3.21.0",
"serverless-offline": "^9.1.6",
"serverless-prune-plugin": "^2.0.1",
"ts-loader": "^9.3.1"
},
"dependencies": {
"@defillama/sdk": "^5.0.54",
"@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",
"dotenv": "^8.2.0",
"ethers": "^5",
"graphql": "^16.0.0",
"graphql-request": "^6.1.0",
"node-fetch": "^2.6.7",
"postgres": "^3.2.4",
"serverless-webpack": "^5.8.0",
"tron-format-address": "^0.1.11",
"tsx": "^4.7.1",
"typescript": "^5.4.2"
}
}