-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
30 lines (30 loc) · 1.34 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
{
"name": "time4value",
"version": "1.0.0",
"repository": "[email protected]:value4value/time4value.git",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"build": "forge build",
"compile": "forge compile",
"test": "forge test -vvv --mp \"test/unit/**/*.sol\" --fork-url https://mainnet.optimism.io",
"test:integration": "forge test -vvv --mp \"test/integration/*/*.sol\" --fork-url https://mainnet.optimism.io ",
"test:invariant": "forge test -vvv --mc BaseInvariantTest --fork-url https://optimism.llamarpc.com/sk_llama_3f92d666a172604faf69e469a67ec6ea ",
"test:income": "forge test -vv --mp \"test/integration/IncomeSimulator.t.sol\" --fork-url https://mainnet.optimism.io ",
"coverage": "forge coverage --mp \"test/unit/**/*.sol\" --fork-url https://mainnet.optimism.io ",
"deploy:testnet": "make deploy-testnet",
"deploy:mainnet": "make deploy-mainnet",
"fmt": "forge fmt --check && solhint \"{scripts,contracts,test}/**/*.sol\"",
"lint": "solhint 'contracts/**/*.sol'",
"clean": "rm -rf artifacts broadcast cache cache-foundry docs out-optimized out"
},
"devDependencies": {
"ds-test": "github:dapphub/ds-test#master",
"forge-std": "github:foundry-rs/forge-std#v1.8.1",
"solhint": "^5.0.1"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.6",
"solady": "^0.0.198"
}
}