-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.22 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.22 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
{
"name": "next-13-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postbuild": "next-sitemap",
"generate-types": "export $(grep 'SUPABASE_PROJECT_REF' .env.local | xargs) && npx supabase gen types typescript --project-id $SUPABASE_PROJECT_REF --schema public > src/types/supabase.ts"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.1.1",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@supabase/auth-helpers-nextjs": "^0.7.3",
"@supabase/supabase-js": "^2.29.0",
"@t3-oss/env-nextjs": "^0.6.0",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"next": "13.4.12",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.2",
"tailwind-merge": "^1.13.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.27",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.27",
"@storybook/blocks": "^7.0.27",
"@storybook/nextjs": "^7.0.27",
"@storybook/react": "^7.0.27",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^8.0.1",
"@tailwindcss/forms": "^0.5.3",
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"autoprefixer": "^10.4.14",
"daisyui": "^3.4.0",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.9",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-tailwindcss": "^3.13.0",
"eslint-plugin-unicorn": "^47.0.0",
"next-sitemap": "^4.1.8",
"postcss": "^8.4.26",
"prettier": "^3.0.0",
"storybook": "^7.0.27",
"storybook-addon-data-theme-switcher": "^0.1.7",
"supabase": "^1.82.2",
"tailwindcss": "^3.3.3",
"tailwindcss-animate": "^1.0.6",
"tailwindcss-radix": "^2.8.0",
"typescript": "^5.1.6"
}
}