mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
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.
28 lines
791 B
JSON
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"
|
|
}
|
|
}
|