forked from Badger-Finance/badger-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 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
{
"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",
"chai": "^4.2.0",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.21",
"ethlint": "^1.2.5",
"hardhat": "^2.0.3",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.57",
"pretty-quick": "^3.0.2"
},
"scripts": {
"lint": "pretty-quick --pattern '**/*.*(sol|json)' --verbose",
"lint:check": "prettier --check **/*.sol **/*.json",
"lint:fix": "pretty-quick --pattern '**/*.*(sol|json)' --staged --verbose"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@openzeppelin/contracts": "^3.2.0",
"@openzeppelin/contracts-upgradeable": "^3.2.0",
"ganache-cli": "^6.12.2"
}
}