-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
145 lines (145 loc) · 8.13 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "estfor-contracts",
"version": "1.0.0",
"description": "Contracts for the game Estfor Kingdom",
"repository": "https://github.com/PaintSwap/estfor-contracts",
"license": "MIT",
"devDependencies": {
"@layerzerolabs/lz-evm-protocol-v2": "^3.0.12",
"@layerzerolabs/oapp-evm": "^0.1.0",
"@layerzerolabs/oapp-evm-upgradeable": "^0.1.0",
"@layerzerolabs/test-devtools-evm-hardhat": "^0.5.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.7",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.7",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@nomicfoundation/ignition-core": "^0.15.7",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^4.0.1",
"@openzeppelin/contracts": "https://gitpkg.now.sh/PaintSwap/openzeppelin-contracts/contracts?v5.1-memory-safe",
"@openzeppelin/contracts-upgradeable": "https://gitpkg.now.sh/PaintSwap/openzeppelin-contracts-upgradeable/contracts?v5.1-memory-safe",
"@openzeppelin/hardhat-upgrades": "^3.5.0",
"@paintswap/estfor-definitions": "2.0.61",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.1",
"chai": "^4.3.7",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"eslint": "9",
"ethers": "6",
"hardhat": "^2.22.17",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.14.0",
"hardhat-exposed": "^0.3.15",
"hardhat-gas-reporter": "^2.2.1",
"hardhat-storage-layout": "^0.1.7",
"husky": "^9.1.7",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.4.1",
"pretty-quick": "^4.0.0",
"sol2uml": "^2.5.20",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.13",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.3"
},
"scripts": {
"console": "npx hardhat console",
"lint": "npx solhint ./contracts/*",
"compile": "npx hardhat compile",
"test": "npx hardhat test --network hardhat",
"clean": "npx hardhat clean",
"verifyContracts": "npx hardhat run scripts/verifyContracts.ts",
"umlStorage": "sol2uml storage ./contracts/debug/DebugStorageSlots.sol -c DebugStorageSlots",
"outputStorage": "npx hardhat check",
"createHexXPString": "npx ts-node scripts/createHexXPString.ts",
"deploy": "npx hardhat run scripts/deploy.ts",
"deployUpgrade": "npx hardhat run scripts/deployUpgrade.ts",
"deployImpls": "npx hardhat run scripts/deployImpls.ts",
"deployBankBeaconUpgrade": "npx hardhat run scripts/deployBankBeaconUpgrade.ts",
"deployTestData": "npx hardhat run scripts/deployTestData.ts",
"deployInstantVRFActionTestData": "npx hardhat run scripts/deployInstantVRFActionTestData.ts",
"addItems": "npx hardhat run scripts/addItems.ts",
"editItems": "npx hardhat run scripts/editItems.ts",
"removeItems": "npx hardhat run scripts/removeItems.ts",
"mintAllItems": "npx hardhat run scripts/mintAllItems.ts",
"addShopItems": "npx hardhat run scripts/addShopItems.ts",
"editShopItems": "npx hardhat run scripts/editShopItems.ts",
"removeShopItem": "npx hardhat run scripts/removeShopItem.ts",
"editClanTiers": "npx hardhat run scripts/editClanTiers.ts",
"addAdmins": "npx hardhat run scripts/addAdmins.ts",
"addPromotionalAdmins": "npx hardhat run scripts/addPromotionalAdmins.ts",
"addPromotion": "npx hardhat run scripts/addPromotion.ts",
"editPromotion": "npx hardhat run scripts/editPromotion.ts",
"removePromotion": "npx hardhat run scripts/removePromotion.ts",
"clearPlayerPromotion": "npx hardhat run scripts/clearPlayerPromotion.ts",
"addQuests": "npx hardhat run scripts/addQuests.ts",
"editQuests": "npx hardhat run scripts/editQuests.ts",
"addActions": "npx hardhat run scripts/addActions.ts",
"editActions": "npx hardhat run scripts/editActions.ts",
"addActionChoices": "npx hardhat run scripts/addActionChoices.ts",
"editActionChoices": "npx hardhat run scripts/editActionChoices.ts",
"removeActionChoices": "npx hardhat run scripts/removeActionChoices.ts",
"addXPThresholdRewards": "npx hardhat run scripts/addXPThresholdRewards.ts",
"editXPThresholdRewards": "npx hardhat run scripts/editXPThresholdRewards.ts",
"addInstantActions": "npx hardhat run scripts/addInstantActions.ts",
"editInstantActions": "npx hardhat run scripts/editInstantActions.ts",
"removeInstantActions": "npx hardhat run scripts/removeInstantActions.ts",
"addInstantVRFActions": "npx hardhat run scripts/addInstantVRFActions.ts",
"editInstantVRFActions": "npx hardhat run scripts/editInstantVRFActions.ts",
"removeInstantVRFActions": "npx hardhat run scripts/removeInstantVRFActions.ts",
"addTerritories": "npx hardhat run scripts/addTerritories.ts",
"editTerritories": "npx hardhat run scripts/editTerritories.ts",
"removeTerritories": "npx hardhat run scripts/removeTerritories.ts",
"addUnsellableShopItems": "npx hardhat run scripts/addUnsellableShopItems.ts",
"addBasePets": "npx hardhat run scripts/addBasePets.ts",
"editBasePets": "npx hardhat run scripts/editBasePets.ts",
"addPassiveActions": "npx hardhat run scripts/addPassiveActions.ts",
"editPassiveActions": "npx hardhat run scripts/editPassiveActions.ts",
"removeUnsellableShopItems": "npx hardhat run scripts/removeUnsellableShopItems.ts",
"editVariousCosts": "npx hardhat run scripts/editVariousCosts.ts",
"setDailyRewards": "npx hardhat run scripts/setDailyRewards.ts",
"setDonationThresholds": "npx hardhat run scripts/setDonationThresholds.ts",
"setExpectedGasLimitFulfill": "npx hardhat run scripts/setExpectedGasLimitFulfill.ts",
"setGasLimitTerritories": "npx hardhat run scripts/setGasLimitTerritories.ts",
"setGasLimitLockedVaults": "npx hardhat run scripts/setGasLimitLockedVaults.ts",
"setBazaar": "npx hardhat run scripts/setBazaar.ts",
"setUpgradeAndEditNameCost": "npx hardhat run scripts/setUpgradeAndEditNameCost.ts",
"setItemsBaseURI": "npx hardhat run scripts/setItemsBaseURI.ts",
"setPetsImageBaseURI": "npx hardhat run scripts/setPetsImageBaseURI.ts",
"setPlayersImageBaseURI": "npx hardhat run scripts/setPlayersImageBaseURI.ts",
"setMinItemQuantityBeforeSellsAllowed": "npx hardhat run scripts/setMinItemQuantityBeforeSellsAllowed.ts",
"setTerritoryMinimumMMRs": "npx hardhat run scripts/setTerritoryMinimumMMRs.ts",
"addInstantVRFActionStrategies": "npx hardhat run scripts/addInstantVRFActionStrategies.ts",
"setMMRAttackDistance": "npx hardhat run scripts/setMMRAttackDistance.ts",
"initializeMMR": "npx hardhat run scripts/initializeMMR.ts",
"setFundAllocationPercentages": "npx hardhat run scripts/setFundAllocationPercentages.ts",
"addItemNFTApprover": "npx hardhat run scripts/addItemNFTApprover.ts",
"pauseGame": "npx hardhat run scripts/pauseGame.ts",
"setAvatars": "npx hardhat run scripts/setAvatars.ts",
"setOrderbookTokenIdInfos": "npx hardhat run scripts/setOrderbookTokenIdInfos.ts",
"setPeer": "npx hardhat run scripts/setPeer.ts",
"setConfig": "npx hardhat run scripts/setConfig.ts",
"overhaulUpgrade": "npx hardhat run scripts/overhaulUpgrade.ts",
"donate": "npx hardhat run scripts/donate.ts",
"fork": "cross-env USE_PRIVATE_KEY=true npx hardhat node --fork",
"impersonate": "npx hardhat run scripts/impersonate.ts",
"requestRandomWords": "npx hardhat run scripts/requestRandomWords.ts",
"forceMMRUpdate": "npx hardhat run scripts/forceMMRUpdate.ts",
"bulkTransfer": "npx hardhat run scripts/bulkTransfer.ts",
"prettier": "node_modules/.bin/prettier --write contracts/**/*.sol scripts/**/*ts",
"precommit": "pretty-quick --staged",
"prepare": "husky install .husky"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {}
}