forked from hrescak/Draftboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.97 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.97 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "draftboard",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build:prod":"prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"test": "vitest",
"test:run": "vitest run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.975.0",
"@aws-sdk/s3-request-presigner": "^3.975.0",
"@lexical/code": "^0.31.2",
"@lexical/link": "^0.31.2",
"@lexical/list": "^0.31.2",
"@lexical/markdown": "^0.31.2",
"@lexical/react": "^0.31.2",
"@lexical/rich-text": "^0.31.2",
"@lexical/selection": "^0.31.2",
"@lexical/utils": "^0.31.2",
"@prisma/client": "^6.8.2",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.80.7",
"@trpc/client": "^11.1.2",
"@trpc/react-query": "^11.1.2",
"@trpc/server": "^11.1.2",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"lexical": "^0.31.2",
"lucide-react": "^0.513.0",
"next": "^15.3.7",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-masonry-css": "^1.0.16",
"superjson": "^2.2.2",
"tailwind-merge": "^3.0.2",
"zod": "^3.25.30"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.15.29",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitejs/plugin-react": "^4.5.2",
"autoprefixer": "^10.4.21",
"eslint": "^9.29.0",
"eslint-config-next": "^15.3.7",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"prisma": "^6.8.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"storybook": "^10.2.6",
"@storybook/nextjs-vite": "^10.2.6",
"@chromatic-com/storybook": "^5.0.0",
"@storybook/addon-vitest": "^10.2.6",
"@storybook/addon-a11y": "^10.2.6",
"@storybook/addon-docs": "^10.2.6",
"@storybook/addon-onboarding": "^10.2.6",
"vite": "^7.3.1",
"playwright": "^1.58.1",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4"
}
}