-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.05 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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-ledger": "^1.0.2",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@openzeppelin/merkle-tree": "^1.0.5",
"hardhat": "^2.22.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^2.0.2"
},
"scripts": {
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint:sol:fix": "prettier 'contracts/**/*.sol' -w",
"gasCost": "npx hardhat test && node gasCost.js",
"coverage": "hardhat coverage && npm run coverage:check",
"coverage:check": "istanbul check-coverage --statements 90 --branches 60 --functions 85 --lines 86",
"validate": "./scripts/validate.sh"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.2"
}
}