30 lines
974 B
JSON
30 lines
974 B
JSON
|
{
|
||
|
"name": "forge-proposal-template",
|
||
|
"version": "1.0.0",
|
||
|
"repository": "https://git.tornado.ws/Theo/forge-proposal-template",
|
||
|
"author": "Theo",
|
||
|
"license": "MIT",
|
||
|
"type": "module",
|
||
|
"private": false,
|
||
|
"scripts": {
|
||
|
"init": "cd lib && git clone --recurse-submodules https://github.com/foundry-rs/forge-std",
|
||
|
"test:windows": ".\\.env.bat && forge test",
|
||
|
"test:linux": ". .env && forge test",
|
||
|
"test:gas:windows": ".\\.env.bat && forge test --gas-report",
|
||
|
"test:gas:linux": ". .env && forge test --gas-report"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@ensdomains/ens-contracts": "^0.0.21",
|
||
|
"@openzeppelin/contracts": "^4.9.0",
|
||
|
"@openzeppelin/upgrades-core": "^1.26.2"
|
||
|
},
|
||
|
"optionalDependencies": {
|
||
|
"@gnosis.pm/ido-contracts": "^0.5.0",
|
||
|
"@gnosis.pm/safe-contracts": "1.3.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"ts-node": "^10.9.1",
|
||
|
"typescript": "^5.1.6"
|
||
|
}
|
||
|
}
|