-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "clientflow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma migrate deploy && prisma generate && next build",
"postinstall": "prisma generate",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:prod:setup": "prisma migrate deploy && prisma db seed",
"db:prod:reset": "prisma migrate reset --force && prisma db seed"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-s3": "^3.700.0",
"@aws-sdk/s3-request-presigner": "^3.700.0",
"@prisma/client": "^6.0.0",
"@upstash/ratelimit": "^1.0.0",
"@upstash/redis": "^1.0.0",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^15.0.0",
"next-auth": "^5.0.0-beta.25",
"next-themes": "^0.4.6",
"prisma": "^6.0.0",
"pusher": "^5.3.2",
"pusher-js": "^8.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"resend": "^6.9.3",
"stripe": "^20.4.1",
"tailwind-merge": "^3.5.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9",
"eslint-config-next": "^15.0.0",
"tailwindcss": "^4",
"vitest": "^4.0.18"
},
"prisma": {
"seed": "node prisma/seed.js"
}
}