-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
120 lines (119 loc) · 3.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "test",
"private": true,
"scripts": {
"dev": "next dev -p 4300",
"build": "next build",
"start": "next start",
"lint": "next lint",
"translate": "ts-node --project tsconfig.scripts.json src/scripts/translate.ts",
"fmt": "prettier --write \"src/**/*.{ts,tsx,js}\" --loglevel error",
"prepare": "husky install"
},
"dependencies": {
"@blocknote/core": "^0.8.0",
"@blocknote/react": "^0.8.0",
"@emoji-mart/data": "^1.0.5",
"@emoji-mart/react": "^1.0.1",
"@headlessui/react": "^1.6.4",
"@heroicons/react": "^2.0.18",
"@mux/upchunk": "^2.3.1",
"@radix-ui/react-slot": "^1.0.2",
"@rainbow-me/rainbowkit": "^1.0.4",
"@sentry/nextjs": "^7.7.0",
"@sindresorhus/slugify": "^2.1.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@types/cookies": "^0.7.7",
"@types/js-cookie": "^3.0.2",
"@types/lunr": "^2.3.4",
"@types/url-parse": "^1.4.8",
"@wagmi/chains": "^0.1.9",
"apollo-link-sentry": "^3.2.0",
"autoprefixer": "^10.4.0",
"awesome-debounce-promise": "^2.1.0",
"class-variance-authority": "^0.6.1",
"classnames": "^2.3.1",
"clsx": "^1.2.1",
"cookies": "^0.8.0",
"date-fns-tz": "^1.3.6",
"emoji-mart": "^5.2.1",
"emoji-regex": "^10.1.0",
"graphql": "^16.1.0",
"gray-matter": "^4.0.3",
"i18next": "^22.4.9",
"js-cookie": "^3.0.1",
"json2csv": "^6.0.0-alpha.2",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-mdx": "^2.0.0",
"mdast-util-to-markdown": "^1.3.0",
"micromark-extension-mdxjs": "^1.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.34",
"mux-embed": "^4.9.2",
"next": "^13.4.3",
"next-i18next": "^13.0.3",
"next-mdx-remote": "^4.1.0",
"postcss": "^8.4.5",
"prism-react-renderer": "^2.0.4",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-beforeunload": "^2.5.3",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-google-recaptcha-v3": "^1.9.8",
"react-hook-form": "^7.29.0",
"react-i18next": "^12.1.4",
"react-icons": "^4.6.0",
"react-image-crop": "^10.0.9",
"react-markdown": "^8.0.3",
"react-paginate": "^8.1.3",
"react-player": "^2.12.0",
"react-select": "^5.2.2",
"react-simple-maps": "^3.0.0",
"react-use": "^17.4.0",
"react-youtube": "^9.0.3",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"sass": "^1.45.0",
"swiper": "^9.3.2",
"tailwind-merge": "^1.13.2",
"tailwindcss": "^3.0.6",
"url-parse": "^1.5.10",
"use-http": "^1.0.26",
"viem": "^1.2.9",
"wagmi": "^1.3.4"
},
"devDependencies": {
"@apollo/client": "^3.7.14",
"@svgr/webpack": "^6.1.2",
"@types/classnames": "^2.3.1",
"@types/emoji-mart": "^3.0.9",
"@types/json2csv": "^5.0.3",
"@types/lodash": "^4.14.182",
"@types/node": "17.0.0",
"@types/prismjs": "^1.26.0",
"@types/react": "18.0.3",
"@types/react-beforeunload": "^2.1.1",
"@types/react-dom": "18.0.6",
"@types/react-paginate": "^7.1.1",
"@types/react-simple-maps": "^3.0.0",
"@types/react-youtube": "^7.10.0",
"@types/swiper": "^5.4.3",
"eslint": "8.4.1",
"eslint-config-next": "^13.4.3",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"src/**/*.js": "prettier --write",
"src/**/*.ts?(x)": "prettier --write"
}
}