-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.74 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
{
"name": "@mzero-labs/protocol",
"version": "1.0.0",
"description": "M^0 Protocol contracts",
"main": "index.js",
"author": "M^0 Labs <[email protected]>",
"license": "GPL-3.0",
"scripts": {
"coverage": "forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage",
"fork-start:local": "anvil",
"fork-deploy:local": "make -B deploy-fork",
"fork-test:local": "wait-on tcp:8545 && yarn fork-deploy:local && forge test -vv --mt 'testFork_checkDistribution'",
"fork-run:local": "npm-run-all -p -r fork-start:local fork-test:local",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'script/**/*.sol' 'src/**/*.sol' 'test/**/*.sol'",
"slither": "forge build --build-info --skip '*/test/**' --skip '*/script/**' --force && slither --compile-force-framework foundry --ignore-compile --config-file slither.config.json --fail-high .",
"solhint": "solhint -f stylish 'src/**/*.sol'",
"solhint-fix": "solhint --fix 'src/**/*.sol'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"chai": "^4.2.0",
"ethers": "^6.4.0",
"hardhat": "^2.19.2",
"hardhat-gas-reporter": "^1.0.9",
"npm-run-all": "4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-solidity": "^1.2.0",
"rand-seed": "^1.0.2",
"solhint": "^3.4.1",
"solidity-coverage": "^0.8.0",
"typechain": "^8.3.0",
"wait-on": "7.2.0"
},
"engines": {
"node": ">=20"
}
}