-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "sherlock-v1",
"version": "0.0.1",
"description": "Core contracts for Sherlock protocol",
"scripts": {
"prettier": "prettier --write contracts/*.sol contracts/**/*.sol",
"prettier-diff": "prettier --list-different contracts/*.sol contracts/**/*.sol",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"gas": "export REPORT_GAS=1; npx hardhat test; export REPORT_GAS="
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true,
"printWidth": 100,
"trailingComma": "all",
"quoteProps": "consistent",
"semi": true
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.0.32",
"hardhat": "^2.1.1",
"solc-0.7": "npm:solc@^0.7.6"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@openzeppelin/contracts": "^3.2.1-solc-0.7",
"diamond-2": "1.4.0",
"dotenv": "^8.2.0",
"hardhat-gas-reporter": "^1.0.4",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.13"
}
}