-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
27 lines (27 loc) · 1.01 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
{
"dependencies": {
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.0",
"axios": "^1.3.2",
"dotenv": "^16.0.3",
"hardhat": "^2.12.0"
},
"scripts": {
"deploy": "hardhat run ./scripts/deploy.js --network mainnet",
"deployTestPlugins": "hardhat run ./scripts/local/deployPlugins.js --network mainnet",
"testLocal": "hardhat test --grep local --network hardhat",
"testZkevm": "hardhat test --grep zkevm --network hardhat",
"testBase": "hardhat test --grep base --network hardhat"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.4",
"solidity-coverage": "^0.8.0"
}
}