-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 6.31 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
{
"version": "0.0.0",
"license": "MIT",
"scripts": {
"test": "yarn hardhat test",
"test:gas": "REPORT_GAS=true yarn hardhat test",
"test:coverage": "yarn hardhat coverage",
"deploy:test": "yarn hardhat run --network localhost scripts/deployments/DeployTest.ts",
"prettier:format": "yarn prettier -w contracts test scripts utils .github .vscode",
"prettier:check": "prettier --list-different contracts test scripts utils .github .vscode",
"deploy:goerli:1-settings": "yarn hardhat run scripts/deployments/DeploySettings.ts --network goerli",
"deploy:goerli:2-vault-factory": "yarn hardhat run scripts/deployments/DeployVaultFactory.ts --network goerli",
"deploy:goerli:3-art-nft": "yarn hardhat run scripts/deployments/DeployArtNFT.ts --network goerli",
"deploy:goerli:4-mint-art-nft": "yarn hardhat run scripts/interactions/MintArtNFT.ts --network goerli",
"deploy:goerli:5-mock-stablecoins": "yarn hardhat run scripts/deployments/DeployMockStablecoins.ts --network goerli",
"deploy:goerli:6-token-vault": "yarn hardhat run scripts/deployments/DeployTokenVault.ts --network goerli",
"deploy:goerli:7-membership": "yarn hardhat run scripts/deployments/DeployMembership.ts --network goerli",
"deploy:goerli:8-crowdsale": "yarn hardhat run scripts/deployments/DeployCrowdsale.ts --network goerli",
"deploy:goerli:9-partially-pause": "yarn hardhat run scripts/interactions/PartiallyPause.ts --network goerli",
"deploy:goerli:10-set-rate": "yarn hardhat run scripts/interactions/SetRate.ts --network goerli",
"deploy:goerli:11-start-sale": "yarn hardhat run scripts/interactions/StartSale.ts --network goerli",
"deploy:goerli:12-approve": "yarn hardhat run scripts/interactions/Approve.ts --network goerli",
"deploy:goerli:13-set-redeemer": "yarn hardhat run scripts/interactions/SetRedeemer.ts --network goerli",
"deploy:goerli:14-buy-nft": "yarn hardhat run scripts/interactions/BuyNFT.ts --network goerli",
"deploy:goerli:all": "yarn deploy:goerli:1-settings && yarn deploy:goerli:2-vault-factory && yarn deploy:goerli:3-art-nft && yarn deploy:goerli:4-mint-art-nft && yarn deploy:goerli:5-mock-stablecoins && yarn deploy:goerli:6-token-vault && yarn deploy:goerli:7-membership && yarn deploy:goerli:8-crowdsale && yarn deploy:goerli:9-partially-pause && yarn deploy:goerli:10-set-rate && yarn deploy:goerli:11-start-sale && yarn deploy:goerli:12-approve && yarn deploy:goerli:13-set-redeemer",
"deploy:goerli:getTiers": "yarn hardhat run scripts/interactions/GetTiers.ts --network goerli",
"deploy:goerli:getNumRemainingNFTs": "yarn hardhat run scripts/interactions/GetNumRemainingNFTs.ts --network goerli",
"deploy:localhost:1-settings": "yarn hardhat run scripts/deployments/DeploySettings.ts --network localhost",
"deploy:localhost:2-vault-factory": "yarn hardhat run scripts/deployments/DeployVaultFactory.ts --network localhost",
"deploy:localhost:3-art-nft": "yarn hardhat run scripts/deployments/DeployArtNFT.ts --network localhost",
"deploy:localhost:4-mint-art-nft": "yarn hardhat run scripts/interactions/MintArtNFT.ts --network localhost",
"deploy:localhost:5-mock-stablecoins": "yarn hardhat run scripts/deployments/DeployMockStablecoins.ts --network localhost",
"deploy:localhost:6-token-vault": "yarn hardhat run scripts/deployments/DeployTokenVault.ts --network localhost",
"deploy:localhost:7-membership": "yarn hardhat run scripts/deployments/DeployMembership.ts --network localhost",
"deploy:localhost:8-crowdsale": "yarn hardhat run scripts/deployments/DeployCrowdsale.ts --network localhost",
"deploy:localhost:9-partially-pause": "yarn hardhat run scripts/interactions/PartiallyPause.ts --network localhost",
"deploy:localhost:10-set-rate": "yarn hardhat run scripts/interactions/SetRate.ts --network localhost",
"deploy:localhost:11-start-sale": "yarn hardhat run scripts/interactions/StartSale.ts --network localhost",
"deploy:localhost:12-approve": "yarn hardhat run scripts/interactions/Approve.ts --network localhost",
"deploy:localhost:13-set-redeemer": "yarn hardhat run scripts/interactions/SetRedeemer.ts --network localhost",
"deploy:localhost:14-buy-nft": "yarn hardhat run scripts/interactions/BuyNFT.ts --network localhost",
"deploy:localhost:all": "yarn deploy:localhost:1-settings && yarn deploy:localhost:2-vault-factory && yarn deploy:localhost:3-art-nft && yarn deploy:localhost:4-mint-art-nft && yarn deploy:localhost:5-mock-stablecoins && yarn deploy:localhost:6-token-vault && yarn deploy:localhost:7-membership && yarn deploy:localhost:8-crowdsale && yarn deploy:localhost:9-partially-pause && yarn deploy:localhost:10-set-rate && yarn deploy:localhost:11-start-sale && yarn deploy:localhost:12-approve && yarn deploy:localhost:13-set-redeemer",
"deploy:localhost:getTiers": "yarn hardhat run scripts/interactions/GetTiers.ts --network localhost",
"deploy:localhost:getNumRemainingNFTs": "yarn hardhat run scripts/interactions/GetNumRemainingNFTs.ts --network localhost"
},
"devDependencies": {
"@ethersproject/experimental": "5.6.3",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.3.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"chai": "^4.2.0",
"dotenv": "^16.0.1",
"erc721a": "^4.1.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.9.3",
"hardhat-gas-reporter": "^1.0.4",
"merkletreejs": "^0.2.31",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"runtypes": "^6.6.0",
"sol2uml": "^1.1.29",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-node": "^10.1.0",
"typechain": "^5.1.2",
"typescript": "^4.5.2"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0"
}
}