-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.43 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
{
"name": "hardhat-project",
"scripts": {
"deploy:hh": "npx hardhat run --network hardhat",
"deploy:optimism": "npx hardhat run --network optimisticEthereum",
"deploy:optimism-goerli": "npx hardhat run --network goerliOptimism",
"test": "hardhat test --network hardhat",
"test-net": "hardhat test --network rinkeby",
"test-all": "hardhat test --network hardhat test/*.js",
"lint": "solhint --max-warnings 50 \"contracts/**/*.sol\"",
"coverage": "hardhat coverage --network hardhat"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomicfoundation/ignition-core": "^0.15.7",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "4.3.7",
"@types/jest": "^29.5.14",
"@types/mocha": ">=9.1.0",
"ethers": "^6.13.4",
"hardhat": "^2.22.15",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@openzeppelin/contracts": "^5.1.0",
"chai": "4.3.7",
"chai-as-promised": "^8.0.0"
}
}