forked from piotrkulpinski/openalternative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.08 KB
/
package.json
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
{
"name": "openalternative",
"version": "0.1.0",
"private": true,
"scripts": {
"email": "cp .env ./node_modules/react-email/dist/preview && email dev",
"dev": "next dev --turbopack -p 5173",
"start": "next start -p 5173",
"build": "next build",
"lint": "bun biome lint --apply .",
"check": "bun biome check --apply .",
"format": "bun biome format --organize-imports-enabled --write .",
"db:generate": "prisma generate --no-hints",
"db:studio": "prisma studio",
"db:push": "prisma db push --skip-generate",
"db:reset": "prisma migrate reset --skip-seed && prisma db push --skip-generate",
"postinstall": "bun run db:generate"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.56",
"@ai-sdk/openai": "^0.0.72",
"@atproto/api": "^0.13.19",
"@aws-sdk/client-s3": "^3.705.0",
"@aws-sdk/lib-storage": "^3.705.0",
"@content-collections/mdx": "^0.2.0",
"@curiousleaf/utils": "^1.0.38",
"@hookform/resolvers": "^3.9.1",
"@mendable/firecrawl-js": "^1.9.1",
"@next/third-parties": "^15.1.1",
"@number-flow/react": "^0.3.5",
"@octokit/graphql": "^8.1.1",
"@prisma/client": "^6",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@react-email/components": "0.0.28",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-table": "^8.20.5",
"ai": "^4.0.11",
"cmdk": "^1.0.4",
"cva": "^1.0.0-beta.1",
"date-fns": "^4.1.0",
"global": "^4.4.0",
"inngest": "^3.28.0",
"inngest-cli": "^1.3.2",
"lucide-react": "^0.460.0",
"next": "^15.1.1-canary.0",
"next-auth": "^5.0.0-beta.25",
"nuqs": "^2.2.3",
"plur": "^5.1.0",
"posthog-js": "^1.194.5",
"react": "^19.0.0",
"react-day-picker": "^9.4.1",
"react-dom": "^19.0.0",
"react-hook-form": "^7.53.2",
"react-markdown": "9.0.1",
"recharts": "^2.14.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"resend": "^4.0.1",
"rss": "^1.2.2",
"satori": "^0.12.0",
"sonner": "^1.7.0",
"stripe": "^17.4.0",
"tailwind-merge": "^2.5.5",
"wretch": "^2.11.0",
"zod": "^3.23.8",
"zsa": "^0.6.0",
"zsa-react": "^0.2.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@content-collections/core": "0.7.3",
"@content-collections/next": "0.2.4",
"@tailwindcss/postcss": "^4.0.0-beta.2",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.10.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/rss": "^0.0.32",
"postcss": "^8",
"prisma": "^6",
"react-email": "^3.0.3",
"schema-dts": "^1.1.2",
"tailwindcss": "^4.0.0-beta.5",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2"
}
}