40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "@prb/foundry-template",
|
|
"description": "Foundry-based template for developing Solidity smart contracts",
|
|
"version": "1.0.0",
|
|
"author": {
|
|
"name": "Paul Razvan Berg",
|
|
"url": "https://github.com/paulrberg"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.4.2",
|
|
"@commitlint/config-conventional": "^17.4.2",
|
|
"commitizen": "^4.3.0",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.1.1",
|
|
"prettier": "^2.8.4",
|
|
"rimraf": "^4.1.2",
|
|
"solhint": "^3.3.8"
|
|
},
|
|
"keywords": [
|
|
"blockchain",
|
|
"ethereum",
|
|
"forge",
|
|
"foundry",
|
|
"smart-contracts",
|
|
"solidity",
|
|
"template"
|
|
],
|
|
"packageManager": "yarn@3.4.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"clean": "rimraf cache out",
|
|
"lint": "yarn lint:sol && yarn prettier:check",
|
|
"lint:sol": "forge fmt --check && yarn solhint \"{script,src,test}/**/*.sol\"",
|
|
"postinstall": "husky install",
|
|
"prettier:check": "prettier --check \"**/*.{json,md,yml}\"",
|
|
"prettier:write": "prettier --write \"**/*.{json,md,yml}\""
|
|
}
|
|
}
|