-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.43 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
{
"name": "metacrypt-template-viem",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "yarn@4.1.1",
"scripts": {
"compile": "forge compile",
"test": "forge test",
"coverage": "forge coverage --report lcov",
"size": "forge build --sizes --force",
"clean": "rm -rf ./cache ./out ./artifacts ./cache ./lcov.info",
"format": "prettier --write \"./**/*.{js,ts,json,md,sol,yaml,yml}\"",
"anvil": "anvil --fork-url https://mainnet.infura.io/v3/9aa3d95b3bc440fa88ea12eaa4456161 --chain-id 31337 --balance 1000",
"deploy:rewards-vault": "forge script scripts/deploy/GenericMultiRewardsVault.s.sol:GenericMultiRewardsVaultDeployer --broadcast --rpc-url http://127.0.0.1:8545",
"deploy:staking-vault": "forge script scripts/deploy/GenericStakedAppreciatingVault.s.sol:GenericStakedAppreciatingVaultDeployer --broadcast --rpc-url http://127.0.0.1:8545"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xMetacrypt/metacrypt-template-viem.git"
},
"bugs": {
"url": "https://github.com/0xMetacrypt/metacrypt-template-viem/issues"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"forge-std": "github:foundry-rs/forge-std#v1.8.1"
},
"devDependencies": {
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.4",
"solhint-plugin-prettier": "^0.1.0"
},
"author": "Akshat Mittal <hi@akshatmittal.com>"
}