-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 871 Bytes
/
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
{
"name": "hardhat-project",
"scripts": {
"node": "hardhat node",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"coverage": "REPORT_COVERAGE=true npx hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --write \"contracts/**/*.sol\""
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8",
"hardhat": "^2.9.7",
"mocha": "^10.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/test-helpers": "^0.5.15",
"hardhat-gas-reporter": "^1.0.8",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.31",
"solidity-coverage": "^0.7.21"
}
}