-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.82 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
{
"name": "pora",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:update": "pnpm db:push && prisma generate",
"db:studio": "prisma studio",
"type-check": "tsc",
"type-check:watch": "pnpm type-check --watch"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@aws-sdk/s3-request-presigner": "^3.525.0",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "5.8.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@tiptap/core": "^2.2.1",
"@tiptap/extension-code-block": "^2.2.4",
"@tiptap/extension-color": "^2.2.1",
"@tiptap/extension-highlight": "^2.2.1",
"@tiptap/extension-horizontal-rule": "^2.2.1",
"@tiptap/extension-image": "^2.2.1",
"@tiptap/extension-link": "^2.2.1",
"@tiptap/extension-placeholder": "^2.2.1",
"@tiptap/extension-task-item": "^2.2.1",
"@tiptap/extension-task-list": "^2.2.1",
"@tiptap/extension-text-style": "^2.2.1",
"@tiptap/extension-typography": "^2.2.2",
"@tiptap/extension-underline": "^2.2.1",
"@tiptap/pm": "^2.2.1",
"@tiptap/react": "^2.2.1",
"@tiptap/starter-kit": "^2.2.1",
"@tiptap/suggestion": "^2.2.1",
"@wooorm/starry-night": "^3.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"hast-util-from-html-isomorphic": "^2.0.0",
"hast-util-to-string": "^3.0.0",
"jotai": "^2.6.4",
"lucide-react": "^0.317.0",
"next": "14.1.0",
"next-auth": "^4.24.5",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-moveable": "^0.56.0",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.1",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.9",
"unist-util-visit": "^5.0.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"postcss": "^8",
"prisma": "^5.8.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}