-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 1.14 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
{
"name": "maxion-nft-marketplace-contracts",
"scripts": {
"build": "hardhat compile",
"test": "hardhat test",
"deploy:bsc-testnet": "hardhat run scripts/deploy.ts --network bscTestnet",
"deploy:bsc-testnet:hw": "source .env.testnet && hardhat run scripts/deploy_hw.ts --network bscTestnet",
"deploy:v2:bsc-testnet:hw": "source .env.testnet && hardhat run scripts/deploy_v2_hw.ts --network bscTestnetHW",
"deploy:v2:bsc-mainnet:hw": "source .env && hardhat run scripts/deploy_v2_hw.ts --network bscMainnetHW",
"deploy:bsc-mainnet:hw": "source .env && hardhat run scripts/deploy_hw.ts --network bscMainnetHW",
"deploy:maxi-mainnet:hw": "source .env.maxi.mainnet && hardhat run scripts/deploy_v2.ts --network maxiMainnetHW"
},
"devDependencies": {
"@ethersproject/hardware-wallets": "^5.7.0",
"@nomicfoundation/hardhat-ledger": "^1.0.1",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.7.3",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@types/lodash": "^4.14.187",
"hardhat": "^2.12.1",
"lodash": "^4.17.21"
}
}