-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
61 lines (61 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "nft-marketplace",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "hardhat test",
"node": "hardhat node",
"deploy:localhost": "hardhat run scripts/deploy.js --network localhost",
"deploy:mumbai": "hardhat run scripts/deploy.js --network mumbai",
"setup-marketplace:localhost": "hardhat run scripts/setupMarket.js --network localhost",
"setup-marketplace:mumbai": "hardhat run scripts/setupMarket.js --network mumbai",
"setup": "npm run deploy:localhost && npm run setup-marketplace:localhost",
"env": "hardhat run scripts/updateVercelEnviromentKeys.js --network mumbai"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.3.0",
"@mui/material": "^5.3.0",
"@mui/styles": "^5.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.2",
"axios": "^0.24.0",
"chai": "^4.3.4",
"dotenv": "^14.1.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"form-data": "^4.0.0",
"formidable": "^3.2.1",
"hardhat": "^2.8.2",
"ipfs-http-client": "^55.0.0",
"multiparty": "^4.2.2",
"next": "12.0.8",
"next-connect": "^0.11.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.24.1",
"react-infinite-scroll-component": "^6.1.0",
"web3modal": "^1.9.5"
},
"devDependencies": {
"@types/prop-types": "^15.7.4",
"add": "^2.0.6",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-standard": "^5.0.0",
"hardhat-gas-reporter": "^1.0.7",
"prop-types": "^15.8.1"
}
}