-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.58 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "hardhat-project",
"scripts": {
"compile": "hardhat clean && hardhat compile && hardhat flatten:all",
"deploy": "hardhat run ./scripts/deploy.ts",
"lint": "eslint scripts/**/*.ts test/**/*.ts",
"prettier": "prettier contracts/**/*.sol",
"test": "hardhat test",
"coverage": "hardhat clean && hardhat coverage"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.9",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.10",
"chai": "^4.5.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"ethers": "^6.13.5",
"hardhat": "^2.22.18",
"hardhat-gas-reporter": "^2.2.2",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.2",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"tsc": "^2.0.4",
"typechain": "^8.3.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}