-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "hardhat-project",
"scripts": {
"commit": "cz",
"deploy": "npx hardhat run scripts/deploy.ts --network polygon",
"deployO": "npx hardhat run scripts/deployOperations.ts --network polygon",
"verify": "npx hardhat run scripts/verify.ts --network polygon",
"simulate": "npx hardhat run scripts/simulate.ts --network polygon",
"simulateM": "npx hardhat run scripts/simulateMain.ts --network polygon"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"commitizen": "^4.2.5",
"cz-emoji": "^1.3.2-canary.2",
"hardhat": "^2.10.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
},
"dependencies": {
"@metamask/eth-sig-util": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.7.3",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-periphery": "^1.4.3",
"dotenv": "^16.0.2"
}
}