-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@bento/adapters",
"version": "1.0.0",
"private": true,
"repository": "https://github.com/0xinevitable/dashboard",
"author": "Junho Yeo <i@junho.io>",
"license": "MPL-2.0",
"main": "./index.ts",
"types": "./index.ts",
"sideEffects": false,
"scripts": {
"build": "tsc",
"test": "env-cmd -f .env ts-node --compiler ttypescript _scripts/test-adapters",
"codegen": "env-cmd -f .env ts-node --compiler ttypescript _scripts/generate-index"
},
"dependencies": {
"@bento/common": "workspace:^",
"@bento/core": "workspace:^",
"@cosmjs/cosmwasm-stargate": "^0.29.3",
"@ethersproject/providers": "^5.7.2",
"@solana/web3.js": "^1.66.2",
"axios": "^1.1.3",
"axios-cache-interceptor": "^0.10.7",
"bech32": "^2.0.0",
"bn.js": "^5.2.1",
"caver-js": "^1.9.0",
"dedent": "^0.7.0",
"klaytn-multicall": "^1.0.5",
"lodash.groupby": "^4.6.0",
"osmojs": "^0.35.0",
"prettier": "^2.7.1",
"query-string": "^7.1.1"
},
"devDependencies": {
"@types/bn.js": "^5.1.1",
"@types/dedent": "^0.7.0",
"@types/lodash.groupby": "^4.6.7",
"@types/node": "^18.11.5",
"@types/prettier": "^2.7.1",
"env-cmd": "^10.1.0",
"find-yarn-workspace-root": "^2.0.0",
"node-fetch": "^3.3.0",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.13",
"typescript": "^4.8.3",
"typescript-json": "^3.3.22"
}
}