-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4.53 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 4.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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "pizzahub",
"version": "0.6.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"pre": "bun entrypoint.ts",
"dev:email": "email dev --port 3001",
"build": "next build",
"build:docker": "docker build -t next .",
"build:podman": "podman build -t next .",
"start": "next start",
"start:docker": "docker run -p 3000:3000 next",
"start:podman": "podman run -p 3000:3000 next",
"dev:up:docker": "docker compose -f docker-compose.dev.yml up -d",
"dev:up:docker:full": "docker compose -f docker-compose.dev.yml --profile full up -d",
"dev:up:podman": "podman compose -f docker-compose.dev.yml up -d",
"dev:up:podman:full": "podman compose -f docker-compose.dev.yml --profile full up -d",
"dev:up:docker:ai": "docker compose -f docker-compose.dev.yml --profile ai up -d",
"dev:up:docker:full:ai": "docker compose -f docker-compose.dev.yml --profile full --profile ai up -d",
"dev:up:podman:ai": "podman compose -f docker-compose.dev.yml --profile ai up -d",
"dev:up:podman:full:ai": "podman compose -f docker-compose.dev.yml --profile full --profile ai up -d",
"dev:down:docker": "docker compose -f docker-compose.dev.yml --profile full --profile ai down",
"dev:down:podman": "podman compose -f docker-compose.dev.yml --profile full --profile ai down",
"dev:stop:docker": "docker compose -f docker-compose.dev.yml --profile full --profile ai stop",
"dev:stop:podman": "podman compose -f docker-compose.dev.yml --profile full --profile ai stop",
"prd:up:docker": "docker compose --profile ready up -d",
"prd:up:docker:build": "docker compose --profile build up -d",
"prd:up:podman": "podman compose --profile ready up -d",
"prd:up:podman:build": "podman compose --profile build up -d",
"prd:up:docker:ai": "docker compose --profile ready --profile ai up -d",
"prd:up:docker:build:ai": "docker compose --profile build --profile ai up -d",
"prd:up:podman:ai": "podman compose --profile ready --profile ai up -d",
"prd:up:podman:build:ai": "podman compose --profile build --profile ai up -d",
"prd:stop:podman": "podman compose --profile ready --profile build --profile ai stop",
"prd:stop:docker": "docker compose --profile ready --profile build --profile ai stop",
"prd:down:podman": "podman compose --profile ready --profile build --profile ai down",
"prd:down:docker": "docker compose --profile ready --profile build --profile ai down",
"migrate:dev": "prisma migrate dev",
"migrate:deploy": "prisma migrate deploy",
"generate": "prisma generate",
"erd": "liam erd build --input ./prisma/schema.prisma --format=prisma --output-dir erd && http-server erd && rm -rf erd"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@prisma/client": "^6.9.0",
"@radix-ui/react-accordion": "^1.2.11",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.3.7",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.5",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@react-email/components": "^0.0.41",
"better-auth": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"embla-carousel-react": "^8.6.0",
"html-react-parser": "^5.2.5",
"lucide-react": "^0.509.0",
"marked": "^15.0.12",
"next": "^15.3.3",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.3",
"ollama": "^0.5.16",
"react": "^19.1.0",
"react-day-picker": "8.10.1",
"react-dom": "^19.1.0",
"react-hook-form": "^7.57.0",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.0",
"use-debounce": "^10.0.5",
"zod": "^3.25.51"
},
"devDependencies": {
"@liam-hq/cli": "^0.5.7",
"@tailwindcss/postcss": "^4.1.8",
"@types/bun": "^1.2.15",
"@types/node": "^22.15.29",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.6",
"http-server": "^14.1.1",
"prisma": "^6.9.0",
"react-email": "^4.0.16",
"tailwindcss": "^4.1.8",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3"
}
}