r4bbit e6dec47f02
chore: add config files from foundry template (#69)
The ultimate goal will be to move the contracts package into its own repository that's based on our foundry template.
This commit adds foundry template config files and removes legacy
hardhat stuff.
2023-10-04 10:47:40 +02:00

28 lines
791 B
JSON

{
"name": "@status-community-dapp/contracts",
"description": "",
"version": "0.1.0",
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.0",
"solhint-community": "^3.6.0"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"scripts": {
"build": "echo 'No build step required. Artifacts are under ./out'",
"clean": "rm -rf cache out",
"lint": "yarn lint:sol && yarn prettier:check",
"lint:sol": "yarn solhint {script,src,test}/**/*.sol",
"lint:fix": "forge fmt && yarn prettier:write",
"prettier:check": "prettier --check **/*.{json,md,yml} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml} --ignore-path=.prettierignore"
}
}