-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "v2nftmarketplace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"verify": "npx hardhat verify <your deployed contract address> --network optism_goerli",
"deploy": "npx hardhat run scripts/deploy.js --network optism_goerli"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.3",
"axios": "^0.27.2",
"chai": "^4.3.6",
"dotenv": "^16.0.2",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.1",
"hardhat": "^2.11.2",
"ipfs-http-client": "^58.0.1",
"next": "12.3.1",
"nft.storage": "^7.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"web3modal": "^1.9.9"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"autoprefixer": "^10.4.12",
"eslint": "8.23.1",
"eslint-config-next": "12.3.1",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}