-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
45 lines (45 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
{
"name": "badger-contracts",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@renproject/chains": "^2.0.3",
"@renproject/ren": "^2.0.3",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.21",
"ethlint": "^1.2.5",
"hardhat": "^2.4.1",
"husky": "^4.3.0",
"mocha": "^8.2.1",
"pino": "^6.9.0",
"pino-pretty": "^4.3.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"pretty-quick": "^3.0.2",
"send-crypto": "0.2.15",
"truffle-hdwallet-provider": "1.0.17",
"web3": "^1.3.1"
},
"scripts": {
"lint": "pretty-quick --pattern \"**/*.*(sol|json)\" --verbose --staged && black --check .",
"lint:check": "prettier --check **/*.sol **/*.json",
"lint:fix": "pretty-quick --pattern \"**/*.*(sol|json)\" --staged --verbose && black .",
"test": "./run-js-tests.sh"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/contracts-upgradeable": "^3.2.0",
"ganache-cli": "^6.12.2",
"dotenv": "^8.2.0",
"mocha": "^8.2.1"
}
}