forked from axelarnetwork/axelar-examples
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.52 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
{
"name": "axelar-local-dev-examples",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"test": "hardhat test",
"send-token": "node examples/send-token",
"call-contract": "node examples/call-contract",
"call-contract-with-token": "node examples/call-contract-with-token",
"build": "rm -rf artifacts && npx hardhat compile",
"lint": "solhint 'src/contracts/**/*.sol' && eslint 'test/**/*.js'",
"prettier": "prettier --write 'examples/**/*.sol' 'test/**/*.js' 'examples/**/*.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@axelar-network/axelar-cgp-solidity": "https://github.com/axelarnetwork/axelar-cgp-solidity.git",
"@axelar-network/axelar-local-dev": "git+https://github.com/axelarnetwork/axelar-local-dev.git",
"@axelar-network/axelarjs-sdk": "^0.5.0-alpha.12",
"@openzeppelin/contracts": "^4.5.0",
"axios": "^0.27.2",
"ethers": "^5.6.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@axelar-network/axelar-utils-solidity": "github:axelarnetwork/axelar-utils-solidity",
"axelar-utils-solidity": "github:axelarnetwork/axelar-utils-solidity",
"eslint": "^8.17.0",
"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.7.21",
"typescript": "^4.6.3",
"waffle": "^0.0.0"
}
}