forked from babylon-finance/strategy-api-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "core-interfaces",
"version": "0.1.0",
"license": "Apache-2.0",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"axios": "^0.24.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.6",
"hardhat-contract-sizer": "^2.1.1",
"hardhat-gas-reporter": "^1.0.4",
"keccak256": "^1.0.3",
"lodash": "^4.17.21",
"merkletreejs": "^0.2.24",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17"
},
"scripts": {
"prettier": "prettier --write .",
"lint:contracts": "solhint contracts/**/*.sol",
"compile": "hardhat compile",
"test": "OPTIMIZER=false npx hardhat test",
"gas-report": "REPORT_GAS=1 yarn test --network hardhat",
"coverage": "FULL=true hardhat coverage",
"lint:tests": "eslint 'test/**/*.test.js'"
},
"dependencies": {
"@openzeppelin/contracts": "3.4.1",
"hardhat-deploy": "^0.11.4"
}
}