-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 6.44 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "omnuum-contracts",
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"repository": "https://github.com/ciety-xyz/subgraph-v1",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"compile": "rimraf './artifacts' './cache', './data' && npx hardhat compile",
"test": "npm run compile && npx hardhat test --network localhost",
"node": "npx hardhat node",
"run:local": "npx hardhat --network localhost run ",
"deploy:managers:local": "npx hardhat run scripts/deployments/runDeploy.js --network localhost",
"deploy:managers:goerli": "npx hardhat run scripts/deployments/runDeploy.js --network goerli",
"deploy:nft:local": "npm run compile && npx hardhat run scripts/deployments/deployNFTBeaconProxy.js --network localhost",
"deploy:nft:goerli": "npm run compile && npx hardhat run scripts/deployments/deployNFTBeaconProxy.js --network goerli",
"deploy:wallet:goerli": "npx hardhat run scripts/deployments/deployWallet.js --network goerli",
"verify:wallet": "npx hardhat verify $npm_config_address --constructor-args scripts/verifications/wallet.js --network $npm_config_network",
"verify:nftBeaconProxy": "npx hardhat verify $npm_config_address --constructor-args scripts/verifications/nftBeaconProxy.js --network $npm_config_network",
"verify:nftFactory": "npx hardhat verify $npm_config_address --constructor-args scripts/verifications/nftFactory.js --network $npm_config_network",
"verify:vrfManager": "npx hardhat verify $npm_config_address --constructor-args scripts/verifications/vrfManager.js --network $npm_config_network",
"verify:revealManager": "npx hardhat verify $npm_config_address --constructor-args scripts/verifications/revealManager.js --network $npm_config_network",
"itx:registerManager": "npx hardhat run scripts/interactions/caManager/registerManager.js --network $npm_config_network",
"itx:initFilterRegistry": "npx hardhat run scripts/interactions/nft/initFilterRegistry.js --network $npm_config_network",
"itx:removeManager": "npx hardhat run scripts/interactions/caManager/removeManager.js --network $npm_config_network",
"itx:registerNFT": "npx hardhat run scripts/interactions/caManager/registerNFT.js --network $npm_config_network",
"itx:addRole": "npx hardhat run scripts/interactions/caManager/roleAddition.js --network $npm_config_network",
"itx:removeRole": "npx hardhat run scripts/interactions/caManager/roleRemoval.js --network $npm_config_network",
"itx:setTicketSchedule": "npx hardhat run scripts/interactions/ticketManager/setEndDate.js --network $npm_config_network",
"itx:setPublicSchedule": "npx hardhat run scripts/interactions/mintManager/setPublicMintSchedule.js --network $npm_config_network",
"itx:mintTicket": "npx hardhat run scripts/interactions/nft/ticketMint.js --network $npm_config_network",
"itx:mintPublic": "npx hardhat run scripts/interactions/nft/publicMint.js --network $npm_config_network",
"itx:airdrop": "npx hardhat run scripts/interactions/mintManager/airDrop.js --network $npm_config_network",
"itx:vrfRequest": "npx hardhat run scripts/interactions/revealManager/vrfRequest.js --network $npm_config_network",
"itx:changeBaseURI": "npx hardhat run scripts/interactions/nft/changeBaseURI.js --network $npm_config_network",
"itx:setReveal": "npx hardhat run scripts/interactions/nft/setReveal.js --network $npm_config_network",
"itx:transferNFT": "npx hardhat run scripts/interactions/nft/transferNFT.js --network $npm_config_network",
"itx:approvalRequest": "npx hardhat run scripts/interactions/wallet/approvalRequest.js --network $npm_config_network",
"itx:approve": "npx hardhat run scripts/interactions/wallet/approve.js --network $npm_config_network",
"itx:revoke": "npx hardhat run scripts/interactions/wallet/revoke.js --network $npm_config_network",
"itx:sendEtherToWallet": "npx hardhat run scripts/interactions/wallet/sendEther.js --network $npm_config_network",
"itx:sendEtherToNFT": "npx hardhat run scripts/interactions/nft/sendEther.js --network $npm_config_network",
"itx:payment": "npx hardhat run scripts/interactions/wallet/payment.js --network $npm_config_network",
"itx:transferBalance": "npx hardhat run scripts/interactions/nft/transferBalance.js --network $npm_config_network",
"upgrade:proxy": "npx hardhat run scripts/upgrades/upgradeProxy.js --network $npm_config_network",
"upgrade:beacon": "npx hardhat run scripts/upgrades/upgradeBeacon.js --network $npm_config_network",
"coverage": "npx hardhat coverage --network hardhat",
"forceImport": "npx hardhat run scripts/upgrades/forceImport.js --network $npm_config_network"
},
"dependencies": {
"@marpple/omnuum-digitalSigning": "npm:@marpple/omnuum-digitalsigning@^1.0.4",
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@openzeppelin/hardhat-upgrades": "^1.21.0",
"@openzeppelin/upgrades-core": "^1.20.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"aws-sdk": "^2.1131.0",
"axios": "^0.27.2",
"bitcore-mnemonic": "^8.25.28",
"chalk": "^4.1.2",
"date-fns": "^2.28.0",
"dotenv": "^10.0.0",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.4",
"ethers-eip712": "^0.2.0",
"fxjs": "^0.21.3",
"hardhat": "^2.12.2",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"inquirer": "^8.2.1",
"keccak256": "^1.0.6",
"rlp": "^3.0.0",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.0",
"@metamask/eth-sig-util": "^4.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.15",
"chai": "^4.3.6",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"prettier-plugin-solidity": "^1.0.0-beta.13",
"rimraf": "^3.0.2"
}
}