-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.39 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "blockchain",
"version": "1.0.0",
"description": "",
"main": "index.js",
"compilerOptions": {
"esModuleInterop": true
},
"scripts": {
"start": "npx hardhat node",
"test": "npx hardhat test",
"deploy:mumbai": "npx hardhat deploy --tags UnbloggedNFT --network mumbai",
"mint:mumbai": "npx hardhat run ./scripts/mint-unbloggedNFT.ts --network mumbai",
"getMetadataURI:mumbai": "npx hardhat run ./scripts/getMetadataURI.ts --network mumbai",
"deploy:matic": "npx hardhat deploy --network mainnet --tags PewCore",
"deploy:optimism": "npx hardhat --network optimism_mainnet etherscan-verify",
"verify:optimisticKovan": "npx hardhat --network optimisticKovan etherscan-verify",
"verify:mainnet": "npx hardhat --network mainnet etherscan-verify",
"verify:rinkeby": "npx hardhat --network rinkeby etherscan-verify",
"verify:mumbai": "npx hardhat --network mumbai etherscan-verify",
"verify:matic": "npx hardhat --network matic etherscan-verify"
},
"author": "",
"license": "ISC",
"dependencies": {
"@chainlink/contracts": "^0.4.1",
"@ethersproject/hardware-wallets": "^5.6.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.19.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@tableland/sdk": "^2.0.2",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"axios": "^0.27.2",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"erc721a-upgradeable": "^4.1.0",
"ethereum-waffle": "^3.4.4",
"fs-extra": "^10.1.0",
"hardhat": "^2.10.0",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-typechain": "^0.3.5",
"nft.storage": "^6.4.0",
"node-fetch": "^3.2.7",
"sanitize-filename": "^1.6.3",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.2",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"ethers": "^5.6.9",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21"
}
}