forked from axelarnetwork/axelar-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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": "axelar-examples",
"version": "1.0.0",
"description": "",
"engines": {
"node": "^16.0.0 || ^18.0.0"
},
"scripts": {
"test": "TEST=true mocha examples/tests",
"start": "node scripts/runStart",
"setProxy": "node scripts/runSetProxy",
"deployMainCode": "node scripts/runDeployMainCode",
"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-aptos": "bash ./build-aptos.sh"
},
"author": "",
"license": "ISC",
"dependencies": {
"@axelar-network/axelar-cgp-solidity": "^4.5.0",
"@axelar-network/axelar-gmp-sdk-solidity": "^3.2.0",
"@axelar-network/axelar-local-dev": "^2.0.0",
"@axelar-network/axelarjs-sdk": "^0.12.8",
"@openzeppelin/contracts": "^4.5.0",
"axios": "^0.27.2",
"bip39": "^3.0.4",
"config": "^3.3.9",
"dotenv": "^16.0.2",
"ethers": "^5.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"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"
},
"optionalDependencies": {
"@axelar-network/axelar-local-dev-aptos": "^2.0.0"
}
}