-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
69 lines (69 loc) · 2.49 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "xcm-action-contracts",
"version": "0.1.0",
"description": "Xcm action contracts to do xcm call to Bifrost's xcm-action pallet",
"keywords": [
"bifrost",
"astar",
"moonbeam",
"xcm-action",
"xcm-transactor",
"xtokens"
],
"homepage": "https://github.com/bifrost-finance/xcm-action-contracts#readme",
"bugs": {
"url": "https://github.com/bifrost-finance/xcm-action-contracts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifrost-finance/xcm-action-contracts.git"
},
"author": "",
"license": "Apache-2.0",
"scripts": {
"build": "hardhat compile",
"deployAstar": "hardhat --network astar deploy",
"deployToMoonbeam": "hardhat --network moonbeam deploy",
"deployToMoonriver": "hardhat --network moonriver deploy",
"deployMoonbaseAlpha": "hardhat --network moonbase_alpha deploy",
"deployAstarRococo": "hardhat --network astar_rococo deploy",
"testInit:moonriver": "hardhat run scripts/moonriverSetupChain.ts --network moonriver_local",
"test:moonriver": "hardhat test test/MoonriverSlpx.ts --network moonriver_local",
"lint:solidity": "solhint 'contracts/**/*.sol'",
"format_sol": "prettier --write --plugin=prettier-plugin-solidity contracts/**/*.sol contracts/*.sol",
"format_ts": "prettier --write deploy/**/*.ts test/*.ts scripts/*.ts hardhat.config.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.9.1",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@polkadot/api": "^10.2.2",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/mocha": ">=9.1.0",
"chai": "^4.2.0",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-deploy": "^0.11.31",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@layerzerolabs/solidity-examples": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"dotenv": "^16.3.1"
}
}