-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "protocol-cosmwasm-test",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "ts-node ./src/index.ts",
"test:localjuno-tests": "npm run test --mode=localjuno_tests",
"test:localjuno-setup-contracts": "npm run test --mode=localjuno_setup_contracts",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "npm run lint --fix"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.28.4",
"@cosmjs/proto-signing": "^0.28.4",
"@cosmjs/stargate": "^0.28.4",
"@polkadot/api": "^8.5.1",
"@polkadot/util": "^9.2.1",
"@types/crypto-js": "^4.0.2",
"@webb-tools/api": "^0.1.4-61",
"@webb-tools/wasm-utils": "^0.1.2-54",
"bn.js": "^5.2.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"elliptic": "^6.5.4",
"ethers": "^5.6.8",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.24"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/chalk": "^2.2.0",
"@types/elliptic": "^6.4.14",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.3.5"
}
}