-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 942 Bytes
/
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
{
"name": "hardhat-nft-marketplace",
"version": "1.0.0",
"author": {
"name": "Mehedi Hasan",
"email": "mehedi.iitdu@gmail.com",
"url": "https://www.linkedin.com/in/md-mehedi-hasan-140116133/"
},
"description": "This is a NFT marketplace smart contract project using hardhat",
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-solhint": "^2.0.1",
"@openzeppelin/contracts": "^4.7.2",
"dotenv": "^14.2.0",
"hardhat": "^2.10.1",
"hardhat-deploy": "^0.9.29"
},
"scripts": {
"build": "hardhat compile",
"compile": "hardhat compile",
"deploy": "hardhat deploy",
"test": "hardhat test",
"test-staging": "hardhat test --network rinkeby",
"coverage": "hardhat coverage",
"typechain": "hardhat typechain"
}
}