-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "lido-dual-governance",
"version": "0.0.1",
"description": "Lido dual governance",
"license": "MIT",
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"scripts": {
"test": "forge test",
"prepare": "husky",
"lint": "solhint \"contracts/**/*.sol\" \"test/**/*.sol\" --ignore-path .solhintignore",
"coverage": "forge coverage",
"precov-report": "mkdir -p ./coverage-report && forge coverage --report lcov --report-file ./coverage-report/lcov.info",
"cov-report": "genhtml ./coverage-report/lcov.info --rc derive_function_end_line=0 --rc branch_coverage=1 -o coverage-report --exclude test --ignore-errors inconsistent --ignore-errors category"
},
"lint-staged": {
"*.sol": [
"forge fmt",
"solhint --ignore-path .solhintignore"
]
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"ethers": "^6.4.0",
"hardhat": "^2.17.2",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"solhint": "^4.1.1",
"solhint-plugin-lido": "^0.0.4",
"solidity-coverage": "^0.8.4"
}
}