-
Notifications
You must be signed in to change notification settings - Fork 665
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.61 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.61 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
{
"name": "@workspace/ui",
"version": "0.0.1",
"private": true,
"exports": {
"./global.css": "./src/global.css",
"./postcss.config": "./postcss.config.mjs",
"./tailwind.config": "./tailwind.config.ts",
"./lib/*": "./src/lib/*.ts",
"./hooks/*": [
"./src/hooks/*.ts",
"./src/hooks/*.tsx"
],
"./components/*": "./src/components/*.tsx",
"./storybook/*": [
"./src/storybook/*.tsx",
"./src/storybook/*.ts"
]
},
"dependencies": {
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "1.2.7",
"@tanstack/react-query": "5.81.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "0.525.0",
"next": "15.5.14",
"next-themes": "^0.4.6",
"prettier": "3.6.2",
"react-children-utilities": "^2.10.0",
"react-markdown": "10.1.0",
"remark-gfm": "4.0.1",
"shiki": "3.12.0",
"sonner": "2.0.6",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"scripts": {
"storybook": "storybook dev -p 6006",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "4.0.1",
"@storybook/addon-docs": "9.0.15",
"@storybook/addon-links": "9.0.15",
"@storybook/addon-onboarding": "9.0.15",
"@storybook/nextjs": "9.0.15",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.21",
"postcss": "8.5.6",
"storybook": "9.1.19",
"tailwindcss": "3.4.17",
"typescript": "5.8.3"
}
}