-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.95 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
{
"name": "nft_managers",
"author": "Emanuele Bellocchia",
"description": "Smart contracts for selling, redeeming (reserving) and auctioning NFTs",
"version": "0.2.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ebellocchia/nft_managers.git"
},
"scripts": {
"compile": "npx hardhat compile",
"recompile": "npx hardhat compile --force",
"deploy-test-tokens": "npx hardhat deploy-test-tokens --network",
"deploy-all": "npx hardhat deploy-all --network",
"deploy-auction": "npx hardhat deploy-auction --network",
"deploy-redeemer": "npx hardhat deploy-redeemer --network",
"deploy-seller": "npx hardhat deploy-seller --network",
"upgrade-auction-to": "npx hardhat upgrade-auction-to --network",
"upgrade-redeemer-to": "npx hardhat upgrade-redeemer-to --network",
"upgrade-seller-to": "npx hardhat upgrade-seller-to --network",
"verify": "npx hardhat verify --network",
"coverage": "npx hardhat coverage",
"test": "npx hardhat test --parallel",
"run-node": "npx hardhat node",
"contract-docs": "npx hardhat docgen",
"contract-size": "npx hardhat size-contracts",
"contract-flatten-auction": "npx hardhat flatten contracts/NftsAuction.sol > NftsAuction_Flattened.sol",
"contract-flatten-redeemer": "npx hardhat flatten contracts/NftsRedeemer.sol > NftsRedeemer_Flattened.sol",
"contract-flatten-seller": "npx hardhat flatten contracts/NftsSeller.sol > NftsSeller_Flattened.sol"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@types/node": "^20.2.5",
"hardhat": "^2.17.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-docgen": "^1.3.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"dotenv": "^16.0.3"
}
}