forked from 00labs/huma-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
41
42
43
44
{
"name": "huma-contract",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@openzeppelin/hardhat-upgrades": "^1.23.1",
"@tenderly/hardhat-tenderly": "^1.1.6",
"chai": "^4.3.6",
"ethers": "^5.7.0",
"hardhat-abi-exporter": "^2.10.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-prettier": "^0.0.1",
"husky": "^8.0.1",
"node-watch": "^0.7.3",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"qrcode-terminal": "^0.12.0",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"typescript": "^4.8.2"
},
"scripts": {
"build": "hardhat compile",
"chain": "hardhat node",
"test": "hardhat test --network hardhat",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"watch": "node scripts/watch.js",
"verify": "hardhat verify",
"lint-solidity": "yarn solhint -f table 'contracts/**/*.sol'",
"postinstall": "husky install",
"coverage": "hardhat coverage --network hardhat"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.8.3",
"dotenv": "^16.0.2",
"hardhat": "^2.11.1"
}
}