File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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" ,
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}
You can’t perform that action at this time.
0 commit comments