-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 2.26 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
53
{
"name": "nifty-cannon-contracts",
"version": "0.1.0",
"description": "Nifty Cannon - Make it rain NFTs!",
"author": "Cliff Hall",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/cliffhall/nifty-cannon-contracts.git"
},
"bugs": {
"url": "https://github.com/cliffhall/nifty-cannon-contracts/issues"
},
"homepage": "https://github.com/cliffhall/nifty-cannon-contracts",
"keywords": [
"blockchain",
"ethereum",
"nft",
"erc721",
"erc1155",
"solidity",
"airdrop"
],
"scripts": {
"build": "npx hardhat compile",
"test": "npx hardhat test",
"cannon:deploy:local": "npx hardhat run --network hardhat scripts/deploy-cannon.js",
"cannon:deploy:poly:test": "npx hardhat run --network poly-test scripts/deploy-cannon.js >> logs/deploy.cannon.poly.test.txt",
"cannon:deploy:poly:main": "npx hardhat run --network poly-main scripts/deploy-cannon.js >> logs/deploy.cannon.poly.main.txt",
"cannon:deploy:eth:test": "npx hardhat run --network eth-test scripts/deploy-cannon.js >> logs/deploy.cannon.eth.test.txt",
"cannon:deploy:eth:main": "npx hardhat run --network eth-main scripts/deploy-cannon.js >> logs/deploy.cannon.eth.main.txt",
"snifties:deploy:local": "npx hardhat run --network hardhat scripts/deploy-snifties.js",
"snifties:deploy:poly:test": "npx hardhat run --network poly-test scripts/deploy-snifties.js >> logs/deploy.snifties.poly.test.txt",
"snifties:deploy:poly:main": "npx hardhat run --network poly-main scripts/deploy-snifties.js >> logs/deploy.snifties.poly.main.txt",
"snifties:deploy:eth:test": "npx hardhat run --network eth-test scripts/deploy-snifties.js >> logs/deploy.snifties.eth.test.txt",
"snifties:deploy:eth:main": "npx hardhat run --network eth-main scripts/deploy-snifties.js >> logs/deploy.snifties.eth.main.txt"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.2.0",
"eip55": "^2.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.6",
"hardhat": "^2.6.4",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.17"
}
}