-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.41 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
{
"name": "serp-checker",
"version": "0.2.0.rc",
"license": "MIT",
"author": "Sead Feng",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-markdown-data": "tsx bin/generateComponentsMarkdownData.ts",
"add-data": "git add data",
"watch-markdown": "tsx bin/watcher.ts"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@next/third-parties": "^14.2.5",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@tanstack/react-table": "^8.19.2",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"deepmerge": "^4.3.1",
"embla-carousel-react": "^8.1.6",
"fast-csv": "^5.0.1",
"lodash": "^4.17.21",
"lucide-react": "^0.400.0",
"next": "14.2.4",
"next-intl": "^3.15.3",
"next-themes": "^0.3.0",
"nextjs-toploader": "^1.6.12",
"react": "^18.3.1",
"react-csv": "^2.2.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-markdown": "^9.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"serping": "^1.2.0-beta.27",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/lodash": "^4.17.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-csv": "^1.1.10",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"chokidar": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8",
"pre-commit": "^1.2.2",
"tailwindcss": "^3.4.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"pre-commit": [
"lint",
"generate-markdown-data",
"add-data"
]
}