forked from LayerZero-Labs/wrapped-asset-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "@fuseio/fuse-bridge-v2",
"version": "1.0.0",
"license": "MIT",
"files": [
"artifacts/",
"contracts/"
],
"description": "Fuse Tokens V2 Bridge",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"prettier": "prettier --write test/*.js && prettier --write contracts/*.sol && prettier --write contracts/**/*.sol",
"lint": "yarn prettier && solhint 'contracts/*.sol' && solhint 'contracts/**/*.sol'"
},
"dependencies": {
"@layerzerolabs/solidity-examples": "^0.0.13",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"axios": "^1.4.0"
},
"devDependencies": {
"@ethersproject/hardware-wallets": "^5.0.14",
"@layerzerolabs/prettier-plugin-solidity": "^1.0.0-beta.19",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/hardhat-upgrades": "^2.1.0",
"@typechain/hardhat": "^8.0.3",
"@typechain/truffle-v5": "^8.0.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.5",
"chai": "^4.3.7",
"dotenv": "^10.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"ethereum-waffle": "^3.2.0",
"ethers": "^6.0.0",
"hardhat": "^2.12.2",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-deploy": "^0.10.5",
"hardhat-deploy-ethers": "^0.3.0-beta.13",
"hardhat-gas-reporter": "^1.0.6",
"prettier": "^2.4.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
}
}