-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.17 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
{
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test",
"test:reportgas": "REPORT_GAS=true npx hardhat test",
"coverage": "npx hardhat coverage",
"solhint": "npx solhint 'contracts/**/*.sol'",
"fmt:js:check": "prettier -c '**/*.{js,ts}'",
"fmt:js": "prettier -w '**/*.{js,ts}'",
"lint:js:check": "npx eslint '**/*.{js,ts}'",
"lint:js": "npx eslint --fix '**/*.{js,ts}'",
"fmt:sol:check": "prettier -c --plugin=prettier-plugin-solidity 'contracts/**/*.sol'",
"fmt:sol": "npx prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol'"
},
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"dotenv": "^16.4.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.19.4",
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.0.0",
"solhint-community": "^3.7.0",
"solhint-plugin-prettier": "^0.1.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.1",
"hardhat-ethers": "^1.0.1"
}
}