-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 3 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
{
"name": "meroku-contracts",
"version": "1.0.0",
"description": "Includes contracts for .app, .dev & .appStore NFTs",
"private": true,
"main": "index.js",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"test": "hardhat test",
"slither": "slither .",
"slither:AppNFT": "slither contracts/AppNFTUpgradeable.sol --solc-remaps '@openzeppelin=node_modules/@openzeppelin @opengsn=node_modules/@opengsn'",
"slither:AppNFT:human-summary": "slither contracts/AppNFTUpgradeable.sol --solc-remaps '@openzeppelin=node_modules/@openzeppelin @opengsn=node_modules/@opengsn' --print human-summary",
"slither:AppNFT:function-summary": "slither contracts/AppNFTUpgradeable.sol --solc-remaps '@openzeppelin=node_modules/@openzeppelin @opengsn=node_modules/@opengsn' --print function-summary",
"deploy:appNFT": "hardhat run scripts/deployAppNFT.js --network",
"deployAppProxy": "hardhat run scripts/deployAppProxy.js --network",
"verify": "hardhat run scripts/verify.js --network",
"verifyAI": "hardhat run scripts/verifyAppImplementation.js --network",
"deployDevProxy": "hardhat run scripts/deployDevProxy.js --network",
"verifyDI": "hardhat run scripts/verifyDevImplementation.js --network",
"deployAppstoreProxy": "hardhat run scripts/deployAppstoreProxy.js --network",
"verifyASI": "hardhat run scripts/verifyAppstoreImplementation.js --network",
"deployDappNameList": "hardhat run scripts/deployDappNameList.js --network",
"verifyDappNameList": "hardhat run scripts/verifyDappNameList.js --network",
"addDappNames": "hardhat run scripts/addDappNames.js --network",
"upgradeDevProxy": "hardhat run scripts/upgradeDevProxy.js --network",
"upgradeAppProxy": "hardhat run scripts/upgradeAppProxy.js --network",
"upgradeAppstoreProxy": "hardhat run scripts/upgradeAppstoreProxy.js --network",
"replaceTrx": "hardhat run scripts/replaceTransaction.js --network",
"mintUpdate": "hardhat run scripts/bulkMintAndURIupdate.js --network",
"whitelist": "hardhat run scripts/whitelist.js --network"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.1"
},
"dependencies": {
"@opengsn/contracts": "^3.0.0-beta.6",
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"googleapis": "^128.0.0",
"hardhat-ethers": "^1.0.1",
"readline": "^1.3.0"
}
}