-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.78 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.78 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
{
"name": "tijothomas.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"analyze": "ANALYZE=true npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@supabase/supabase-js": "^2.50.2",
"@vercel/analytics": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"gsap": "^3.13.0",
"lucide-react": "^0.290.0",
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.0.0",
"zod": "^4.1.8",
"zustand": "^5.0.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@next/bundle-analyzer": "^15.5.3",
"@storybook/addon-a11y": "^9.1.5",
"@storybook/addon-docs": "^9.1.5",
"@storybook/addon-onboarding": "^9.1.5",
"@storybook/addon-vitest": "^9.1.5",
"@storybook/nextjs-vite": "^9.1.5",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"autoprefixer": "^10.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"eslint-plugin-storybook": "^9.1.5",
"jsdom": "^26.1.0",
"playwright": "^1.55.0",
"postcss": "^8.0.0",
"storybook": "^9.1.5",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.3.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}