-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.21 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
69
70
71
72
73
74
{
"name": "teskry",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"seed:demo": "node scripts/seed-demo-data.cjs",
"seed:guest": "node scripts/seed-guest-data.cjs",
"storybook": "storybook dev -p 6007",
"build-storybook": "storybook build",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@lexical/react": "^0.38.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.105.1",
"@tanstack/react-query": "^5.100.9",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"lexical": "^0.38.2",
"lucide-react": "^0.553.0",
"next": "^16.2.6",
"next-auth": "^4.24.13",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-big-calendar": "^1.19.4",
"react-calendar": "^6.0.0",
"react-day-picker": "^9.11.1",
"react-dom": "19.2.0",
"react-hot-toast": "^2.6.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"resend": "^6.5.2",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@storybook/nextjs": "^10.4.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-big-calendar": "^1.16.3",
"@types/react-dom": "^19",
"ajv": "^8.20.0",
"baseline-browser-mapping": "^2.10.29",
"chromatic": "^17.5.0",
"eslint": "^9",
"eslint-config-next": "^16.2.6",
"playwright": "^1.61.0",
"storybook": "^10.4.6",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}