-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"genContractType": "abi-types-generator './public/contracts/NftMarket.json' --output='./types' --name=nftMarketContract --provider=ethers_v5"
},
"dependencies": {
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^2.0.11",
"@metamask/providers": "^9.1.0",
"@openzeppelin/contracts": "^4.7.3",
"@tailwindcss/forms": "^0.5.3",
"axios": "^0.27.2",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.1",
"form-data": "^4.0.0",
"moment": "^2.29.4",
"next": "12.3.1",
"next-iron-session": "^4.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-quill": "^1.3.5",
"react-render-html": "^0.6.0",
"react-toastify": "^9.0.8",
"swr": "^1.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@truffle/hdwallet-provider": "^2.1.3",
"@types/node": "18.7.20",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.12",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"ethereum-abi-types-generator": "^1.3.2",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8",
"typescript": "4.8.3"
}
}