-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.68 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
{
"name": "mdx-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ui": "npx shadcn-ui@latest add",
"postbuild": "next-sitemap"
},
"dependencies": {
"@jsdevtools/rehype-toc": "^3.0.2",
"@mapbox/rehype-prism": "^0.9.0",
"@mdx-js/loader": "^3.0.0",
"@mdx-js/react": "^3.0.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@reduxjs/toolkit": "^2.0.1",
"@tailwindcss/typography": "^0.5.10",
"aos": "^2.3.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"echarts": "^5.4.3",
"echarts-wordcloud": "^2.1.0",
"gray-matter": "^4.0.3",
"i18next": "^23.7.14",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lucide-react": "^0.312.0",
"next": "14.1.0",
"next-mdx-remote": "^4.4.1",
"ni18n": "^1.1.0",
"prism-themes": "^1.9.0",
"react": "^18",
"react-dom": "^18",
"react-i18next": "11.18.6",
"react-redux": "^9.0.4",
"react-resizable-panels": "^2.0.9",
"react-viewer": "^3.2.2",
"react-virtuoso": "^4.7.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^3.0.1",
"tailwind-merge": "^2.2.0"
},
"devDependencies": {
"@types/aos": "^3.0.7",
"@types/lodash": "^4.14.202",
"@types/lodash-es": "^4.17.12",
"@types/mockjs": "^1.0.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"classnames": "^2.5.1",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"next-sitemap": "^4.2.3",
"postcss": "^8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"sass": "^1.69.6",
"tailwindcss": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
},
"browserslist": {
"production": [
"last 3 android version",
"last 3 ios_saf version",
"last 3 edge version",
"last 3 chrome version",
"last 3 firefox version",
"last 3 safari version"
],
"development": [
"last 1 android version",
"last 1 ios_saf version",
"last 1 edge version",
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}