-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
80 lines (80 loc) · 2.54 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
{
"name": "jolly-ui",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache",
"build:registry": "tsx --tsconfig ./src/tsconfig.scripts.json ./src/scripts/build-registry.mts && prettier --loglevel silent --write \"src/registry/**/*.{ts,tsx,mdx}\" --cache",
"postbuild": "next-sitemap --config next-sitemap.config.cjs"
},
"dependencies": {
"@docsearch/react": "^3.6.2",
"@internationalized/date": "^3.5.6",
"@next/third-parties": "^14.2.15",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@react-aria/collections": "3.0.0-alpha.5",
"@vercel/analytics": "^1.3.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"contentlayer2": "^0.4.6",
"date-fns": "^4.1.0",
"framer-motion": "^11.11.8",
"geist": "^1.3.1",
"lodash.template": "^4.5.0",
"lucide-react": "^0.452.0",
"next": "^14.2.15",
"next-contentlayer2": "^0.4.6",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.4",
"react-stately": "^3.33.0",
"react-wrap-balancer": "^1.1.1",
"tailwind-merge": "^2.5.4",
"ts-morph": "^24.0.0",
"zod": "^3.23.8",
"zustand": "^5.0.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@next/eslint-plugin-next": "^14.2.15",
"@types/eslint": "^8.56.12",
"@types/lodash.template": "^4.5.3",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/unist": "^3.0.3",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"eslint-config-next": "14.2.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"mdast-util-toc": "^7.1.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-aria-components": "^1.4.1",
"rehype": "^13.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-code-import": "^1.2.0",
"remark-gfm": "^4.0.0",
"rimraf": "^5.0.10",
"shiki": "^1.22.0",
"tailwindcss": "^3.4.13",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"unist-builder": "4.0.0",
"unist-util-visit": "^5.0.0"
}
}