-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
96 lines (96 loc) · 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
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
95
96
{
"name": "night-market",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"serve": "next build && next start",
"start": "next start",
"lint": "next lint",
"format": "prettier --write next.config.js ./src/**/*.{ts,tsx,json} ./public/locales/**/*.json"
},
"lint-staged": {
"*.ts": "prettier --write",
"*.tsx": "prettier --write"
},
"dependencies": {
"@bugsnag/js": "^7.21.0",
"@bugsnag/plugin-react": "^7.19.0",
"@cardinal/mpl-candy-machine-utils": "^4.5.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.1",
"@ladderlabs/buddylink": "=0.1.6",
"@metaplex-foundation/mpl-token-metadata": "=2.13.0",
"@motleylabs/mtly-auction-house": "^2.5.6",
"@motleylabs/mtly-nightmarket": "^1.3.0",
"@motleylabs/mtly-reward-center": "^0.2.9",
"@noble/curves": "^1.2.0",
"@project-serum/anchor": "^0.26.0",
"@react-hook/window-size": "^3.1.1",
"@solana/spl-token": "^0.3.8",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.34",
"@solana/wallet-adapter-wallets": "^0.19.22",
"@solana/web3.js": "^1.78.5",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/react-transition-group": "^4.4.6",
"@vercel/og": "^0.5.17",
"abort-controller": "^3.0.0",
"ahooks": "^3.7.8",
"autoprefixer": "^10.4.16",
"bn.js": "^5.2.1",
"clsx": "^2.0.0",
"coingecko-api-v3": "^0.0.29",
"date-fns": "^2.30.0",
"i18next": "^23.5.1",
"js-base64": "^3.7.5",
"next": "^13.5.3",
"next-i18next": "^14.0.3",
"nookies": "^2.5.2",
"qrcode.react": "^3.1.0",
"querystring": "^0.2.1",
"react": "^18.2.0",
"react-debounce-input": "^3.3.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.2",
"react-hotjar": "^6.1.0",
"react-i18next": "^13.2.2",
"react-infinite-scroll-component": "^6.1.0",
"react-loader-spinner": "^5.4.5",
"react-popper-tooltip": "^4.4.2",
"react-toastify": "^9.1.3",
"react-transition-group": "^4.4.5",
"react-use-websocket": "^4.4.0",
"recharts": "^2.8.0",
"sharp": "^0.32.6",
"swiper": "^10.3.0",
"swr": "^2.2.4",
"tailwind-scrollbar": "^3.0.5",
"zod": "^3.22.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/bn.js": "^5.1.2",
"@types/luxon": "^3.3.2",
"@types/node": "^20.6.5",
"@types/react": "^18.2.22",
"@types/react-dom": "18.2.7",
"@types/recharts": "^1.8.24",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"eslint": "8.50.0",
"eslint-config-next": "^13.5.3",
"eslint-plugin-unused-imports": "^3.0.0",
"lint-staged": "^14.0.1",
"postcss": "^8.4.30",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwind-clip-path": "^1.0.0",
"tailwindcss": "^3.3.3",
"turbo": "^1.10.14",
"typescript": "5.2.2"
}
}