-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.58 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
{
"name": "hardhat-nft-marketplace-ts",
"version": "1.0.0",
"main": "index.js",
"author": "fbrcode <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"test": "hardhat test",
"coverage": "hardhat coverage",
"mint-list": "hardhat run scripts/mint-and-list.js --network localhost",
"list-only": "hardhat run scripts/list-only.js --network localhost",
"cancel-list": "hardhat run scripts/cancel-item.js --network localhost",
"buy-item": "hardhat run scripts/buy-item.js --network localhost",
"update-item": "hardhat run scripts/update-item.js --network localhost",
"get-token-uri": "hardhat run scripts/get-token-uri.js --network localhost",
"mine-only": "hardhat run scripts/mine-only.js --network localhost",
"mint-only": "hardhat run scripts/mint-only.js --network localhost",
"mint-list:rinkeby": "hardhat run scripts/mint-and-list.js --network rinkeby"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.1",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.12",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21"
}
}