Skip to content

Commit a35e6a1

Browse files
authored
Update package.json
1 parent 0cb913f commit a35e6a1

1 file changed

Lines changed: 18 additions & 2 deletions

File tree

package.json

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@
1414
"verify": "npx hardhat run scripts/verify-contracts.js --network",
1515
"clean": "npx hardhat clean",
1616
"lint": "eslint .",
17-
"format": "prettier --write ."
17+
"format": "prettier --write .",
18+
"prepare": "husky install",
19+
"lint-staged": "lint-staged",
20+
"ci:build": "npm run compile && npm run test",
21+
"deploy:explorer": "node scripts/deploy-explorer.js",
22+
"deploy:dashboard": "node scripts/deploy-dashboard.js"
1823
},
1924
"keywords": [
2025
"blockchain",
@@ -27,11 +32,22 @@
2732
"license": "MIT",
2833
"devDependencies": {
2934
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
30-
"hardhat": "^2.22.6"
35+
"hardhat": "^2.22.6",
36+
"eslint": "^9.0.0",
37+
"prettier": "^3.2.5",
38+
"lint-staged": "^15.2.0",
39+
"husky": "^9.0.0",
40+
"solhint": "^3.6.0",
41+
"hardhat-gas-reporter": "^1.0.10",
42+
"hardhat-contract-sizer": "^2.0.0"
3143
},
3244
"dependencies": {
3345
"@openzeppelin/contracts": "^4.9.6",
3446
"dotenv": "^16.4.5",
3547
"ethers": "^6.11.1"
48+
},
49+
"lint-staged": {
50+
"*.js": ["eslint --fix", "prettier --write"],
51+
"*.sol": ["prettier --write"]
3652
}
3753
}

0 commit comments

Comments
 (0)