forked from reservoirprotocol/marketplace-v1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.13 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sample-marketplace",
"scripts": {
"dev": "next dev",
"prettier": "./node_modules/prettier/bin-prettier.js --check './src/**/*.{ts,tsx,js,json}'",
"prettier:write": "./node_modules/prettier/bin-prettier.js --write ./src/**/*.{ts,tsx,js,json}",
"build": "next build",
"start": "next start",
"lint": "next lint",
"cspell": "./node_modules/cspell/bin.js src/**/*.{ts,tsx,js,json} --show-context"
},
"dependencies": {
"@apollo/client": "^3.7.1",
"@datadog/browser-rum": "^4.2.0",
"@ethersproject/providers": "^5.7.2",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@headlessui/react": "^1.5.0",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-accordion": "1.0.0",
"@radix-ui/react-dialog": "1.0.1-rc.2",
"@radix-ui/react-dropdown-menu": "1.0.1-rc.2",
"@radix-ui/react-popover": "1.0.1-rc.2",
"@radix-ui/react-slider": "1.0.0",
"@radix-ui/react-tabs": "1.0.0",
"@radix-ui/react-toggle-group": "1.0.0",
"@radix-ui/react-tooltip": "1.0.1-rc.2",
"@rainbow-me/rainbowkit": "^0.7.1",
"@ramosdiego/reservoir": "^0.0.15",
"@ramosdiego/ui": "^0.0.10",
"@react-hookz/web": "^14.2.2",
"@reservoir0x/reservoir-kit-ui": "0.5.2",
"@reservoir0x/sdk": "^0.0.123",
"@stitches/react": "^1.2.8",
"@types/styled-components": "^5.1.26",
"axios": "^1.2.0",
"bignumber.js": "^9.1.0",
"downshift": "^6.1.7",
"ethers": "^5.7.1",
"graphql": "^16.6.0",
"human-format": "^1.0.0",
"install": "^0.13.0",
"jit": "^0.1.1",
"lodash.debounce": "^4.0.8",
"luxon": "^2.3.0",
"match-sorter": "^6.3.1",
"next": "12.1.7-canary.10",
"next-themes": "^0.2.0",
"next-with-less": "^2.0.5",
"react": "17.0.2",
"react-debounce-input": "^3.2.5",
"react-dom": "17.0.2",
"react-hook-form": "^7.28.1",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.3.1",
"react-infinite-scroll-component": "^6.1.0",
"react-intersection-observer": "^8.33.1",
"react-jazzicon": "^1.0.3",
"react-markdown": "^8.0.3",
"react-masonry-css": "^1.0.16",
"recoil": "^0.7.4",
"styled-components": "^5.3.6",
"swr": "^1.1.2",
"tailwind-styled-components": "^2.2.0",
"tailwindcss": "^3.0.15",
"tailwindcss-radix": "^1.6.0",
"wagmi": "^0.6.7"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@types/lodash.debounce": "^4.0.6",
"@types/luxon": "^2.0.9",
"@types/node": "17.0.9",
"@types/react": "17.0.38",
"antd": "^4.24.1",
"autoprefixer": "^10.4.2",
"cspell": "^6.13.3",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"postcss": "^8.4.5",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.3",
"typescript": "4.5.4"
}
}