-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.53 KB
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
{
"name": "hirael",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm registry:gen && pnpm registry:props && node scripts/check-registry.mjs && pnpm registry:build && next build",
"start": "npx serve out",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"registry:gen": "node scripts/build-registry.mjs && node scripts/build-redirects.mjs",
"redirects:gen": "node scripts/build-redirects.mjs",
"registry:props": "node scripts/extract-props.mjs",
"registry:build": "shadcn build",
"check:registry": "node scripts/check-registry.mjs",
"check:install": "node scripts/check-install.mjs",
"prepare": "husky"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-slot": "^1.3.3",
"@tanstack/react-table": "^9.1.1",
"@tiptap/core": "^3.29.2",
"@tiptap/extension-highlight": "^3.29.2",
"@tiptap/extension-placeholder": "^3.29.2",
"@tiptap/extension-text-align": "^3.29.2",
"@tiptap/pm": "^3.29.2",
"@tiptap/react": "^3.29.2",
"@tiptap/starter-kit": "^3.29.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"embla-carousel-react": "^8.6.0",
"gray-matter": "^4.0.3",
"gsap": "^3.15.0",
"hls.js": "^1.6.17",
"input-otp": "^1.4.2",
"lucide-react": "^1.30.0",
"motion": "^13.0.0",
"next": "16.3.0",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"nuqs": "^2.9.5",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.8",
"react-hook-form": "^7.85.0",
"react-resizable-panels": "^4.12.2",
"recharts": "3.10.1",
"shadcn": "^4.16.2",
"shaders": "^3.0.448",
"shiki": "^4.4.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/mdx": "^2.0.14",
"@types/node": "^26.2.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.4",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.5",
"eslint-config-next": "16.3.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"postcss": ">=8.5.10"
}
}
}