-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.15 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.15 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
103
104
105
106
107
108
109
110
{
"name": "cite",
"version": "0.1.0",
"private": true,
"license": "MIT",
"packageManager": "yarn@4.14.1",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:push": "prisma db push",
"db:reset": "prisma migrate reset",
"db:setup": "tsx scripts/apply-rls.ts",
"eval": "tsx scripts/eval.ts",
"prepare": "husky",
"postinstall": "prisma generate && node scripts/copy-pdf-worker.mjs"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.79",
"@ai-sdk/react": "^3.0.193",
"@anthropic-ai/sdk": "^0.98.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@supabase/ssr": "^0.10.3",
"@supabase/supabase-js": "^2.106.1",
"@types/hast": "^3.0.4",
"ai": "^6.0.191",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"geist": "^1.7.1",
"hast-util-to-text": "^4.0.2",
"inngest": "^4.4.0",
"js-tiktoken": "^1.0.21",
"lucide-react": "^1.16.0",
"mammoth": "^1.12.0",
"mdast-util-to-string": "^4.0.0",
"motion": "^12.40.0",
"nanoid": "^5.1.11",
"next": "16.2.6",
"next-intl": "^4.12.0",
"next-themes": "^0.4.6",
"pdfjs-dist": "^5.7.284",
"pg": "^8.21.0",
"radix-ui": "^1.4.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"react-resizable-panels": "^4.11.2",
"rehype-parse": "^9.0.1",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@next/env": "^16.2.6",
"@tailwindcss/postcss": "^4.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.0.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9.17.0",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"shadcn": "^4.8.0",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css,yml,yaml}": [
"prettier --write"
]
}
}