-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.63 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.63 KB
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
{
"name": "match-me",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"vercel-build": "prisma generate && prisma migrate deploy && prisma db seed && next build",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.2",
"@hookform/resolvers": "^3.9.0",
"@nextui-org/react": "^2.4.6",
"@prisma/client": "^5.19.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.4.0",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.3.30",
"next": "14.2.6",
"next-auth": "^5.0.0-beta.20",
"next-cloudinary": "^6.12.0",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0-rc2",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-icons": "^5.3.0",
"react-toastify": "^10.0.5",
"resend": "^4.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/bcryptjs": "^2.4.6",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.4",
"postcss": "^8",
"prisma": "^5.19.0",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.3",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}