Skip to content

Commit 97a63df

Browse files
committed
build: Update deps
1 parent 0549be5 commit 97a63df

File tree

4 files changed

+1435
-1490
lines changed

4 files changed

+1435
-1490
lines changed

contracts/Greeter.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* SPDX-License-Identifier: MIT */
2-
pragma solidity ^0.8.23;
2+
pragma solidity ^0.8.24;
33

44
import { console } from "hardhat/console.sol";
55
import { IGreeter } from "./interfaces/IGreeter.sol";

hardhat.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export default {
135135
flat: false,
136136
},
137137
solidity: {
138-
version: "0.8.23",
138+
version: "0.8.24",
139139
settings: {
140140
optimizer: {
141141
enabled: false,

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -19,55 +19,55 @@
1919
"url": "https://github.com/lingcoder/hardhat-template.git"
2020
},
2121
"devDependencies": {
22-
"@commitlint/cli": "^18.4.3",
23-
"@commitlint/config-conventional": "^18.4.3",
22+
"@commitlint/cli": "^19.2.2",
23+
"@commitlint/config-conventional": "^19.2.2",
2424
"@metamask/eth-sig-util": "^7.0.1",
25-
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
25+
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
2626
"@nomicfoundation/hardhat-ethers": "^3.0.5",
2727
"@nomicfoundation/hardhat-foundry": "^1.1.1",
2828
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
29-
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
30-
"@nomicfoundation/hardhat-verify": "^2.0.3",
29+
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
30+
"@nomicfoundation/hardhat-verify": "^2.0.5",
3131
"@nomiclabs/hardhat-solhint": "^3.0.1",
32-
"@openzeppelin/contracts": "^5.0.1",
33-
"@openzeppelin/contracts-upgradeable": "^5.0.1",
32+
"@openzeppelin/contracts": "^5.0.2",
33+
"@openzeppelin/contracts-upgradeable": "^5.0.2",
3434
"@openzeppelin/docs-utils": "^0.1.5",
35-
"@openzeppelin/hardhat-upgrades": "^3.0.1",
35+
"@openzeppelin/hardhat-upgrades": "^3.0.5",
3636
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
3737
"@typechain/ethers-v6": "^0.5.1",
38-
"@types/chai": "^4.3.11",
38+
"@types/chai": "^4.3.14",
3939
"@types/fs-extra": "^11.0.4",
4040
"@types/mocha": "^10.0.6",
41-
"@types/node": "^20.10.6",
42-
"@typescript-eslint/eslint-plugin": "^6.17.0",
43-
"@typescript-eslint/parser": "^6.17.0",
44-
"eslint": "^8.56.0",
41+
"@types/node": "^20.12.7",
42+
"@typescript-eslint/eslint-plugin": "^6.21.0",
43+
"@typescript-eslint/parser": "^6.21.0",
44+
"eslint": "^8.57.0",
4545
"eslint-config-prettier": "^9.1.0",
4646
"eslint-config-standard": "^17.1.0",
4747
"eslint-plugin-import": "^2.29.1",
48-
"eslint-plugin-mocha": "^10.2.0",
49-
"eslint-plugin-n": "^16.6.1",
50-
"eslint-plugin-prettier": "^5.1.2",
48+
"eslint-plugin-mocha": "^10.4.2",
49+
"eslint-plugin-n": "^16.6.2",
50+
"eslint-plugin-prettier": "^5.1.3",
5151
"eslint-plugin-promise": "^6.1.1",
52-
"ethers": "^6.9.2",
52+
"ethers": "^6.11.1",
5353
"fs-extra": "^11.2.0",
54-
"hardhat": "^2.19.4",
54+
"hardhat": "^2.22.2",
5555
"hardhat-abi-exporter": "^2.10.1",
5656
"hardhat-contract-sizer": "^2.10.0",
57-
"hardhat-deploy": "^0.11.45",
58-
"hardhat-ignore-warnings": "^0.2.9",
59-
"husky": "^8.0.3",
57+
"hardhat-deploy": "^0.12.2",
58+
"hardhat-ignore-warnings": "^0.2.11",
59+
"husky": "^9.0.11",
6060
"lodash": "^4.17.21",
6161
"micromatch": "^4.0.5",
62-
"mocha": "^10.2.0",
63-
"prettier": "^3.1.1",
62+
"mocha": "^10.4.0",
63+
"prettier": "^3.2.5",
6464
"prettier-plugin-solidity": "^1.3.1",
65-
"solhint": "^4.0.0",
66-
"solidity-ast": "^0.4.55",
65+
"solhint": "^4.5.4",
66+
"solidity-ast": "^0.4.56",
6767
"solidity-docgen": "0.6.0-beta.36",
6868
"ts-generator": "^0.1.1",
6969
"ts-node": "^10.9.2",
70-
"typescript": "^5.3.3"
70+
"typescript": "^5.4.5"
7171
},
7272
"scripts": {
7373
"prepare": "husky install",
@@ -90,6 +90,6 @@
9090
},
9191
"dependencies": {
9292
"cross-env": "^7.0.3",
93-
"dotenv": "^16.3.1"
93+
"dotenv": "^16.4.5"
9494
}
9595
}

0 commit comments

Comments
 (0)