-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.57 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
{
"name": "blogs-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.5",
"@heroicons/react": "^2.1.1",
"@hookform/resolvers": "^3.3.4",
"@next-auth/prisma-adapter": "^1.0.7",
"@nextui-org/react": "^2.2.9",
"@prisma/client": "5.8.1",
"@tailwindcss/typography": "^0.5.10",
"@tiptap/core": "^2.1.16",
"@tiptap/extension-bubble-menu": "^2.1.16",
"@tiptap/extension-character-count": "^2.1.16",
"@tiptap/extension-color": "^2.1.16",
"@tiptap/extension-floating-menu": "^2.1.16",
"@tiptap/extension-focus": "^2.1.16",
"@tiptap/extension-font-family": "^2.1.16",
"@tiptap/extension-highlight": "^2.2.4",
"@tiptap/extension-image": "^2.1.16",
"@tiptap/extension-link": "^2.1.16",
"@tiptap/extension-list-item": "^2.1.16",
"@tiptap/extension-placeholder": "^2.1.16",
"@tiptap/extension-subscript": "^2.2.4",
"@tiptap/extension-superscript": "^2.2.4",
"@tiptap/extension-text-align": "^2.1.16",
"@tiptap/extension-text-style": "^2.1.16",
"@tiptap/extension-typography": "^2.1.16",
"@tiptap/extension-underline": "^2.1.16",
"@tiptap/extension-youtube": "^2.2.4",
"@tiptap/html": "^2.2.1",
"@tiptap/pm": "^2.1.16",
"@tiptap/react": "^2.1.16",
"@tiptap/starter-kit": "^2.1.16",
"bcrypt": "^5.1.1",
"check-password-strength": "^2.0.7",
"clsx-tailwind-merge": "^1.0.4",
"cn": "^0.1.1",
"framer-motion": "^11.0.3",
"isomorphic-dompurify": "^2.3.0",
"nanoid": "^5.0.4",
"next": "14.1.0",
"next-auth": "^4.24.5",
"nodemailer": "^6.9.8",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.49.3",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.8.1",
"react-share": "^5.1.0",
"simplex-noise": "^4.0.1",
"slugify": "^1.6.6",
"validator": "^13.11.0",
"web-push": "^3.6.7",
"z": "^1.0.9",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5",
"@types/node": "^20",
"@types/nodemailer": "^6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/validator": "^13",
"@types/web-push": "^3",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"prisma": "5.8.1",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"packageManager": "[email protected]",
"prisma": {
"schema": "./src/prisma/schema.prisma"
}
}