This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "seaport-frontend",
"description": "The frontend of an example implementation of the Seaport marketplace protocol for educational purpose.",
"author": {
"name": "Jasper Alexander"
},
"repository": {
"type": "git",
"url": "https://github.com/JasperAlexander/seaport-frontend.git"
},
"homepage": "https://github.com/JasperAlexander/seaport-frontend#readme",
"bugs": {
"url": "https://github.com/JasperAlexander/seaport-frontend/issues"
},
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.0.0",
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-dropdown-menu": "^1.0.0",
"@radix-ui/react-select": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"@tippyjs/react": "^4.2.6",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/dynamic": "^2.0.2",
"@vanilla-extract/next-plugin": "^2.0.2",
"@vanilla-extract/sprinkles": "^1.4.1",
"@vanilla-extract/webpack-plugin": "^2.1.11",
"clsx": "^1.2.1",
"ipfs-core-types": "^0.11.1",
"ipfs-http-client": "^57.0.3",
"next": "^12.3.0",
"next-auth": "^4.10.3",
"next-translate": "^1.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intersection-observer": "^9.4.0",
"react-remove-scroll": "^2.5.5",
"react-select": "^5.4.0",
"react-timeago": "^7.1.0",
"react-top-loading-bar": "^2.1.0",
"siwe": "^1.1.6",
"swr": "^1.3.0",
"wagmi": "^0.6.5"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@opensea/seaport-js": "^1.0.4",
"@rari-capital/solmate": "^6.4.0",
"@types/node": "18.0.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-timeago": "^4.1.3",
"crypto": "^1.0.1",
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.10.0",
"typescript": "4.7.4",
"zustand": "^4.0.0-rc.1"
}
}