-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.42 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
{
"name": "hardhat-mad-boiler",
"version": "1.0.0",
"description": "Ready-to-use preconfigured HardHat Ethereum development environment with additional tools for smart-contract development",
"license": "Apache-2.0",
"dependencies": {
"@openzeppelin/contracts": "^4.9.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"dotenv": "^16.3.1",
"ethers": "^6.1.0",
"hardhat": "^2.17.3",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.5",
"typescript": "^5.2.2"
},
"scripts": {
"compile": "npx hardhat compile",
"clean": "npx hardhat clean",
"lint:ts": "eslint scripts/ test/ --ext=ts",
"lint:sol": "solhint 'contracts/**/*.sol'",
"lint": "npm run lint:sol && npm run lint:ts",
"lint:fix": "npm run lint:sol:fix && npm run lint:ts:fix",
"lint:ts:fix": "eslint scripts/ test/ --ext=ts --fix",
"lint:sol:fix": "prettier 'contracts/**/*.sol' --write",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage"
}
}