-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.4 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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-viem": "^2.0.6",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@nomicfoundation/hardhat-ignition-viem": "^0.15.9",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@nomicfoundation/ignition-core": "^0.15.9",
"@types/chai": "^4.3.20",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"hardhat": "^2.22.9",
"hardhat-gas-reporter": "^2.2.2",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.1.0",
"@openzeppelin/hardhat-upgrades": "^3.5.0"
},
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test --network hardhat",
"deploy:sepolia": "npx hardhat run ignition/modules/OpenDeploy.ts --network sepolia",
"deploy:mainnet": "npx hardhat run ignition/modules/OpenDeploy.ts --network mainnet",
"verify:sepolia": "npx hardhat verify --network sepolia",
"verify:mainnet": "npx hardhat verify --network mainnet",
"verify:bsc": "npx hardhat verify --network bsc"
}
}