-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 2.14 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
{
"name": "portal-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"supabase:login": "npx supabase login",
"supabase:gen-types": "npx supabase gen types --lang=typescript --project-id snzhzfjipuxeiacxldnd > src/types/supabase.database.ts",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@headlessui/react": "^2.1.3",
"@heroicons/react": "^2.1.3",
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.2.1",
"@supabase/ssr": "0.4.0",
"@supabase/supabase-js": "^2.45.1",
"class-variance-authority": "^0.7.0",
"date-fns": "^3.6.0",
"input-otp": "^1.2.4",
"lucide-react": "^0.365.0",
"next": "14.1.0",
"next-themes": "0.3.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.2",
"react-imask": "^7.6.1",
"slate": "^0.103.0",
"slate-react": "^0.107.1",
"tailwind-merge": "^2.2.2",
"vaul": "0.9.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@storybook/addon-essentials": "^8.0.4",
"@storybook/addon-interactions": "^8.0.4",
"@storybook/addon-links": "^8.0.4",
"@storybook/addon-onboarding": "^8.0.4",
"@storybook/blocks": "^8.0.4",
"@storybook/nextjs": "^8.0.4",
"@storybook/react": "^8.0.4",
"@storybook/test": "^8.0.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-storybook": "^0.8.0",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.5.10",
"storybook": "^8.0.4",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18"
}
}