-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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
{
"name": "xchain-dao",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@tomfrench/matic-proofs": "^0.3.2",
"chai": "^4.3.4",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.4",
"hardhat-gas-reporter": "^1.0.4",
"openzeppelin-solidity": "2.2.0",
"prettier": "2.6.1",
"prettier-check": "^2.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"rlp": "^2.2.7",
"safe-buffer": "^5.1.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"solidity-rlp": "^2.0.5",
"web3": "^1.7.3",
"yaml": "^2.1.1"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"prettier:check": "prettier-check contracts/**/*.sol",
"prettier:fix": "prettier --write contracts/**/*.sol test/**/*.js scripts/**/*.js"
},
"dependencies": {
"@ethereumjs/tx": "^3.5.1",
"ethereumjs-block": "^2.2.2",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.4",
"level": "^8.0.0",
"merkle-patricia-tree": "^4.2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}