-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.25 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "next-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:migrate": "npx prisma migrate",
"db:generate": "npx prisma generate",
"db:run": "yarn run db:migrate && yarn run db:generate",
"install:prod": "yarn && yarn run db:run"
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@google/generative-ai": "^0.21.0",
"@hocuspocus/provider": "^2.13.5",
"@prisma/client": "^5.16.2",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@react-email/components": "^0.0.25",
"@tanstack/react-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.50.1",
"@tiptap/extension-collaboration": "^2.6.2",
"@tiptap/extension-collaboration-cursor": "^2.6.2",
"@tiptap/extension-color": "^2.4.0",
"@tiptap/extension-document": "^2.4.0",
"@tiptap/extension-font-family": "^2.4.0",
"@tiptap/extension-highlight": "^2.4.0",
"@tiptap/extension-list-item": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/extension-text-style": "^2.4.0",
"@tiptap/extension-underline": "^2.4.0",
"@tiptap/html": "^2.5.8",
"@tiptap/pm": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@types/jsonwebtoken": "^9.0.6",
"@vercel/analytics": "^1.3.1",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.5.0",
"html2canvas": "^1.4.1",
"input-otp": "^1.2.4",
"jose": "^5.6.3",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lib0": "^0.2.97",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.400.0",
"next": "14.2.4",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"otp-generator": "^4.0.1",
"prettier": "^3.3.3",
"react": "^18",
"react-colorful": "^5.6.1",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"resend": "^4.0.0",
"sharp": "^0.33.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.1",
"ws": "^8.18.0",
"y-prosemirror": "^1.2.12",
"y-protocols": "^1.0.6",
"y-webrtc": "^10.3.0",
"y-websocket": "^2.0.4",
"yjs": "^13.6.18",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@tanstack/eslint-plugin-query": "^5.50.1",
"@types/lodash": "^4.17.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-react": "^7.35.2",
"eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8",
"prisma": "^5.16.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}