-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 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
81
82
83
{
"private": true,
"packageManager": "[email protected]+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92",
"scripts": {
"dev": "env NEXT_PUBLIC_BACKEND=http://127.0.0.1:8000 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@tabler/icons-react": "^3.29.0",
"@tailwindcss/postcss": "^4.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"color": "^4.2.3",
"immer": "^10.1.1",
"js-sha512": "^0.9.0",
"lodash": "^4.17.21",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"postcss": "^8.5.1",
"rangy": "^1.3.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.54.2",
"react-resizable-panels": "^2.1.7",
"react-tracked": "^2.0.1",
"scheduler": "^0.23.2",
"tailwind-merge": "^3.0.1",
"tailwindcss": "^4.0.2",
"zod": "^3.24.1",
"zustand": "^5.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@chromatic-com/storybook": "^3.2.4",
"@eslint-react/eslint-plugin": "^1.26.0",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/blocks": "^8.5.2",
"@storybook/nextjs": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/test": "^8.5.2",
"@types/color": "^4.2.0",
"@types/lodash": "^4.17.0",
"@types/node": "20.8.10",
"@types/rangy": "^0.0.38",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-storybook": "^0.11.2",
"storybook": "^8.5.2",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3"
}
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}