-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.14 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
{
"name": "nft-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat test --network localhost",
"chain": "npx hardhat node",
"compile": "npx hardhat compile",
"dev": "npx hardhat run --network localhost scripts/run.js",
"deploy": "npx hardhat run --network localhost scripts/deploy.js",
"deploy:testnet": "npx hardhat run --network goerli scripts/deploy.js",
"mint:testnet": "npx hardhat run --network goerli scripts/mint.js",
"verify": "npx hardhat run --network goerli scripts/verify.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.8"
},
"dependencies": {
"@chainlink/contracts": "^0.6.0",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"dotenv": "^16.0.1",
"hardhat": "^2.12.6",
"hardhat-gas-reporter": "^1.0.9",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.9"
}
}