-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.33 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3010",
"dev2": "NODE_OPTIONS='--inspect' next dev --turbopack -p 3010",
"build": "next build",
"start": "next start",
"lint": "eslint --fix src/** --config .eslintrc-fix.json",
"check-lint": "next lint"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^3.9.1",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.2.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.5.1",
"fuse.js": "^7.0.0",
"jotai": "^2.10.3",
"lucide-react": "^0.292.0",
"next": "15.1.0",
"pg": "^8.13.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.0",
"sharp": "0.33.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.1"
},
"devDependencies": {
"@mdx-js/esbuild": "^3.1.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/mdx": "^3.1.0",
"@mdx-js/runtime": "^1.6.22",
"@next/eslint-plugin-next": "^15.1.0",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.2",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.20",
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.4.7",
"esbuild": "^0.19.12",
"eslint": "^9.16.0",
"eslint-config-next": "15.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-37ed2a7-20241206",
"eslint-plugin-react-hooks": "^5.1.0",
"hastscript": "^8.0.0",
"html-to-react": "^1.7.0",
"markmap-lib": "^0.16.1",
"markmap-render": "^0.16.0",
"mdx-bundler": "^10.0.3",
"mdx-embed": "^1.1.2",
"postcss": "^8.4.49",
"react-headroom": "^3.2.1",
"react-lite-youtube-embed": "^2.4.0",
"react-share": "^5.1.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.12.6",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"remark-parse-frontmatter": "^1.0.3",
"remark-reading-time": "^2.0.1",
"remark-rehype": "^11.1.1",
"remark-remove-comments": "^1.1.1",
"remark-sectionize": "^2.1.0",
"remark-stringify": "^11.0.0",
"remark-toc": "^9.0.0",
"rss": "^1.2.2",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.16",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^5.7.2",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
},
"peerDependencies": {
"webpack": "^5.94.0",
"trim": "^0.0.3"
}
}