-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.28 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.28 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
{
"name": "jadeai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build:export-css": "tsx scripts/build-export-css.ts",
"prebuild": "pnpm build:export-css",
"build": "next build",
"start": "next start",
"lint": "eslint",
"type-check": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:generate:pg": "drizzle-kit generate --config drizzle-pg.config.ts",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/lib/db/seed.ts"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"@swc/core",
"sharp",
"unrs-resolver",
"esbuild",
"@parcel/watcher"
]
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.50",
"@ai-sdk/google": "^3.0.34",
"@ai-sdk/openai": "^3.0.26",
"@ai-sdk/react": "^3.0.80",
"@auth/drizzle-adapter": "^1.11.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fingerprintjs/fingerprintjs": "^5.0.1",
"@sparticuz/chromium-min": "^143.0.4",
"ai": "^6.0.78",
"better-sqlite3": "^12.6.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"docx": "^9.0.0",
"drizzle-orm": "^0.45.1",
"jsonrepair": "^3.13.2",
"lucide-react": "^0.563.0",
"mupdf": "^1.27.0",
"next": "16.1.6",
"next-auth": "5.0.0-beta.30",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"postgres": "^3.4.8",
"puppeteer-core": "^24.37.2",
"qrcode": "^1.5.4",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^11.0.0",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}