-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "nextjs-fullstack-blog-ts",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.6.0",
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.16.2",
"@types/nodemailer": "^6.4.15",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"firebase": "^10.12.3",
"jwt-decode": "^4.0.0",
"next": "14.2.15",
"next-auth": "^5.0.0-beta.16",
"nodemailer": "^6.9.13",
"react": "^18.3.1",
"react-confirm-toast": "^1.0.7",
"react-dom": "^18.3.1",
"react-draft-wysiwyg": "^1.15.0",
"react-hook-form": "^7.51.3",
"react-icons": "^5.1.0",
"react-quill": "^2.0.0",
"react-spinners": "^0.14.1",
"react-toastify": "^10.0.5",
"resend": "^3.2.0",
"sharp": "^0.33.3",
"swr": "^2.2.5",
"uuid": "^9.0.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.12.7",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-draft-wysiwyg": "^1.13.8",
"@types/uuid": "^9.0.8",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"prisma": "^5.12.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}