-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "next",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@hookform/resolvers": "^3.0.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^4.11.0",
"@reduxjs/toolkit": "^1.9.3",
"@tanstack/react-query": "^5.4.3",
"next": "^14.0.3",
"next-auth": "^4.24.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.9",
"react-icons": "^4.8.0",
"react-redux": "^8.0.5",
"sharp": "^0.32.0",
"stripe": "^14.2.0",
"tailwind-merge": "^2.0.0",
"typescript": "5.1.6",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^14.0.3",
"postcss": "^8",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3",
"typescript": "5.1.3"
}
}