-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.53 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "elluminar-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.3.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"e2e": "playwright test",
"db:generate": "prisma generate",
"db:validate": "prisma validate",
"db:audit": "tsx scripts/schema-audit.ts",
"db:migrate": "prisma migrate dev",
"db:deploy": "prisma migrate deploy",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"postinstall": "prisma generate"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@better-auth/sso": "^1.6.23",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@react-email/components": "^1.0.12",
"@sentry/nextjs": "^10.63.0",
"@supabase/supabase-js": "^2.110.0",
"@t3-oss/env-nextjs": "^0.13.11",
"@tanstack/react-table": "^8.21.3",
"@tiptap/extension-link": "^3.27.1",
"@tiptap/extension-placeholder": "^3.27.1",
"@tiptap/pm": "^3.27.1",
"@tiptap/react": "^3.27.1",
"@tiptap/starter-kit": "^3.27.1",
"@upstash/redis": "^1.38.2",
"better-auth": "^1.6.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"framer-motion": "^12.42.2",
"lucide-react": "^1.23.0",
"nanoid": "^5.1.16",
"next": "16.2.10",
"next-safe-action": "^8.5.5",
"next-themes": "^0.4.6",
"razorpay": "^2.9.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"resend": "^6.16.0",
"server-only": "^0.0.1",
"shadcn": "^4.12.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.10",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"tailwindcss": "^4",
"tsx": "^4.22.4",
"typescript": "^5",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.9"
}
}