-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
52 lines (52 loc) · 2.03 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "evm-minting",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs": "hardhat docgen",
"start": "hardhat watch dev",
"node": "hardhat node --hostname 127.0.0.1",
"coverage": "RUN_SLOW_TESTS=true hardhat coverage",
"test": "DETERMINISTIC_TESTS=true REPORT_GAS=true REPORT_CONTRACT_SIZE=true RUN_SLOW_TESTS=true hardhat test",
"deploy:localhost": "hardhat --network localhost deploy",
"deploy:polygon": "hardhat --network polygon deploy",
"deploy:mainnet": "hardhat --network mainnet deploy",
"deploy:goerli": "hardhat --network goerli deploy",
"verify:polygon": "hardhat --network polygon etherscan-verify",
"verify:mainnet": "hardhat --network mainnet etherscan-verify",
"verify:goerli": "hardhat --network goerli etherscan-verify",
"gnosis:mainnet": "hardhat --network mainnet run scripts/generate-gnosis-tx.js",
"gnosis:goerli": "hardhat --network goerli run scripts/generate-gnosis-tx.js",
"factory-info:localhost": "npx hardhat run --network localhost scripts/factory-info.js",
"factory-info:mainnet": "npx hardhat run --network mainnet scripts/factory-info.js",
"factory-info:goerli": "npx hardhat run --network goerli scripts/factory-info.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"chalk": "^4.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.3.0",
"hardhat-deploy": "^0.9.26",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.6",
"hardhat-watcher": "^2.1.1",
"keccak256": "^1.0.6",
"merkletreejs": "^0.2.27",
"solidity-coverage": "^0.7.19",
"solidity-docgen": "^0.6.0-beta.29"
},
"dependencies": {
"@openzeppelin/contracts": "4.7.3",
"@openzeppelin/contracts-upgradeable": "4.7.3",
"erc721a-upgradeable": "3.2.0",
"web3": "^1.7.3"
}
}