-
Notifications
You must be signed in to change notification settings - Fork 163
/
package.json
58 lines (58 loc) · 2.12 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
{
"name": "axelar-examples",
"version": "1.0.0",
"description": "",
"engines": {
"node": "^16.0.0 || ^18.0.0"
},
"scripts": {
"test": "TEST=true mocha examples/tests",
"test:cosmos": "TEST=true mocha examples/tests/cosmos.test.js",
"test:evm": "TEST=true mocha examples/tests/evm.test.js",
"test:multiversx": "TEST=true mocha examples/tests/multiversx.test.js",
"start": "node scripts/runStart",
"deploy": "node scripts/runDeploy",
"execute": "node scripts/runExecute",
"setup": "node scripts/runSetupEnv",
"check-balance": "node scripts/runCheckBalance",
"build": "rm -rf artifacts && npx hardhat clean && npx hardhat compile",
"build-wasm": "bash ./build-wasm.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"@axelar-network/axelar-chains-config": "^1.2.0",
"@axelar-network/axelar-gmp-sdk-solidity": "^6.0.0",
"@axelar-network/axelar-local-dev": "^2.3.3",
"@axelar-network/axelar-local-dev-cosmos": "^2.3.0",
"@axelar-network/axelar-local-dev-multiversx": "^2.3.0",
"@axelar-network/axelarjs-sdk": "^0.15.0",
"@axelar-network/interchain-token-service": "1.2.4",
"@grpc/grpc-js": "^1.10.3",
"@grpc/proto-loader": "^0.7.10",
"@multiversx/sdk-core": "^12.19.0",
"@openzeppelin/contracts": "^4.5.0",
"@uniswap/v3-periphery": "^1.4.4",
"axios": "^0.27.2",
"bech32": "^2.0.0",
"bip39": "^3.0.4",
"commander": "^12.0.0",
"config": "^3.3.9",
"dotenv": "^16.0.2",
"ethers": "^5.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"chai": "^4.4.1",
"eslint-config-richardpringle": "^2.0.0",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2"
}
}