-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "release-fast",
"version": "0.0.1",
"private": true,
"repository": "https://github.com/NEVI0/release-fast.git",
"author": "Nevio <nevio.dev@gmail.com>",
"license": "Proprietary",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:vercel": "prisma generate && prisma migrate deploy && next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset",
"db:migrate": "prisma migrate dev",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"stripe:webhook": "stripe listen --forward-to localhost:3000/api/stripe/webhook"
},
"dependencies": {
"@auth/prisma-adapter": "^2.10.0",
"@google/genai": "^1.8.0",
"@hookform/resolvers": "^5.1.1",
"@next/third-parties": "^15.4.3",
"@prisma/client": "^6.10.1",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-switch": "^1.2.5",
"@stripe/stripe-js": "^7.4.0",
"@tanstack/react-query": "^5.81.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lottie-react": "^2.4.1",
"lucide-react": "^0.514.0",
"next": "^15.5.7",
"next-auth": "5.0.0-beta.25",
"next-intl": "^4.3.5",
"next-themes": "^0.4.6",
"nextjs-toploader": "^3.8.16",
"openai": "^5.8.2",
"prisma": "^6.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.59.0",
"react-icons": "^5.5.0",
"remark-parse": "^11.0.0",
"sonner": "^2.0.5",
"stripe": "^18.0.0",
"tailwind-merge": "^3.3.1",
"unified": "^11.0.5",
"zod": "^3.25.67"
},
"devDependencies": {
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@faker-js/faker": "^10.1.0",
"@tailwindcss/postcss": "^4",
"@tanstack/eslint-plugin-query": "^5.81.2",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"tw-animate-css": "^1.3.4",
"typescript": "^5"
}
}