-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.66 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
{
"name": "leetcontracts",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"erc721a": "^4.2.3",
"hardhat": "^2.14.0",
"terser": "^5.17.1"
},
"dependencies": {
"@0xsequence/sstore2": "github:0xsequence/sstore2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@openzeppelin/contracts": "^4.9.1",
"dom-parser": "^0.1.6",
"dotenv": "^16.0.3",
"ethers": "5.7.2",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10",
"solady": "^0.0.103"
},
"scripts": {
"clean": "npx hardhat clean",
"build": "npx hardhat compile",
"local-node": "npx hardhat node",
"test": "npx hardhat test test/LeetBrian.js",
"test-claim": "npx hardhat test test/LeetBrianClaim.js",
"housekeep": "node scripts/housekeep.js",
"interact": "npx hardhat run scripts/interact.js --network base-goerli",
"airdrop-hardhat": "npx hardhat run scripts/airdrop.js --network localhost",
"airdrop-base-mainnet": "npx hardhat run scripts/airdrop.js --network base-mainnet",
"deploy-hardhat": "npx hardhat run scripts/deploy.js --network localhost",
"deploy-base-goerli": "npx hardhat run scripts/deploy.js --network base-goerli",
"deploy-base-mainnet": "npx hardhat run scripts/deploy.js --network base-mainnet",
"deploy-fix-hardhat": "npx hardhat run scripts/deployFix.js --network localhost",
"deploy-fix-base-goerli": "npx hardhat run scripts/deployFix.js --network base-goerli",
"deploy-fix-base-mainnet": "npx hardhat run scripts/deployFix.js --network base-mainnet"
}
}