-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.51 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": "equalizer-smart-contracts-v1",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"check": "npx hardhat check",
"test": "npx hardhat test",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"postinstall": "npx hardhat compile"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.1.0-rc.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@typechain/ethers-v5": "^6.0.5",
"@typechain/truffle-v5": "^4.0.1",
"@typechain/web3-v1": "^2.2.0",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"hardhat": "^2.1.2",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"husky": "^6.0.0",
"prettier": "^2.3.0",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.3",
"typescript": "^4.2.3"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"dotenv": "^10.0.0"
}
}