-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 852 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
{
"name": "hh-fund-me",
"version": "1.0.0",
"description": "first Github",
"author": "rob",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.11.12",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
},
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"dotenv": "^16.0.1",
"solhint": "^3.3.7"
},
"scripts": {
"test": "hardhat test",
"test:staging": "hardhat test --network goerli",
"lint": "solhint 'contracts/FundMe.sol'",
"lint:fix": "solhint 'contracts/*.sol' --fix",
"format": "prettier --write .",
"coverage": "hardhat coverage"
}
}