-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 973 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
30
31
{
"name": "hardhat-fund-me",
"author": "Nike",
"version": "1.0.0",
"dependencies": {
"@chainlink/contracts": "^0.5.1",
"dotenv": "^16.0.3",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.20",
"solhint": "^3.3.7"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"ethers": "^5.7.2",
"hardhat-gas-reporter": "^1.0.9"
},
"overrides": {
"@nomiclabs/hardhat-waffle": {
"@nomiclabs/hardhat-ethers": "$@nomiclabs/hardhat-ethers"
}
},
"scripts": {
"test": "npx hardhat test",
"test:staging": "npx hardhat test --network goerli",
"lint": "npx solhint 'contracts/*.sol'",
"lint:fix": "npx solhint 'contracts/*.sol' --fix",
"format": "npx prettier --write .",
"coverage": "npx hardhat coverage"
}
}