-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "Embeddable Widget and Lead-Capture Platform",
"private": true,
"version": "0.1.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run __tests__/unit",
"test:integration": "start-server-and-test dev http://localhost:3000 \"vitest run __tests__/integration\"",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"seed": "prisma db seed && tsx scripts/seed-demo-data.ts"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.4",
"@prisma/client": "^6.19.3",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.7.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.1",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"framer-motion": "^12.43.0",
"lucide-react": "^0.462.0",
"next": "^15.1.3",
"next-auth": "5.0.0-beta.25",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"resend": "^6.18.1",
"tailwind-merge": "^3.6.0",
"three": "^0.185.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/three": "^0.185.3",
"@vitejs/plugin-react": "^6.0.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"postcss": "^8.4.49",
"prisma": "^6.2.1",
"start-server-and-test": "^3.0.12",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
}
}