-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "openlingo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "bun --env-file=.env.local drizzle-kit generate",
"db:migrate": "bun --env-file=.env.local scripts/migrate.ts",
"db:push": "bun --env-file=.env.local drizzle-kit push --force",
"db:studio": "bun --env-file=.env.local drizzle-kit studio",
"db:seed": "bun run scripts/seed.ts",
"db:nuke": "bun run scripts/nuke-db.ts && bun --env-file=.env.local drizzle-kit push --force",
"db:reset": "bun run db:nuke && bun run db:seed",
"db:up": "docker compose up -d",
"db:down": "docker compose down"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.44",
"@ai-sdk/google": "^3.0.29",
"@ai-sdk/openai": "^3.0.29",
"@ai-sdk/react": "^3.0.88",
"@aws-sdk/client-s3": "^3.989.0",
"@google/genai": "^1.41.0",
"@mozilla/readability": "^0.6.0",
"ai": "^6.0.86",
"better-auth": "^1.4.18",
"drizzle-orm": "^0.45.1",
"gray-matter": "^4.0.3",
"linkedom": "^0.18.12",
"next": "16.1.6",
"openai": "^6.21.0",
"postgres": "^3.4.8",
"posthog-js": "^1.351.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"resend": "^6.9.3",
"zod": "3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bun": "^1.3.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"esbuild",
"protobufjs",
"sharp",
"unrs-resolver"
]
}