-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
{
"name": "multilingual-ai-document-assistant",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --check",
"typecheck": "tsc --noEmit",
"test:unit": "mkdir -p .tmp && TMPDIR=\"$PWD/.tmp\" vitest run",
"test:ask": "vitest run tests/askDetectAnswerLanguage.test.ts tests/askConfidenceBands.test.ts tests/askGuardrails.test.ts",
"test:unit:watch": "mkdir -p .tmp && TMPDIR=\"$PWD/.tmp\" vitest",
"test:e2e": "npx playwright test",
"test:e2e:headed": "npx playwright test --headed --project=chromium",
"test:report": "npx playwright show-report",
"test": "npm run test:unit && npm run test:e2e"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.48",
"@babycommando/entity-db": "github:babycommando/entity-db",
"@base-ui/react": "^1.2.0",
"@heroicons/react": "^2.2.0",
"@tailwindcss/postcss": "^4.2.1",
"ai": "^6.0.138",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"embla-carousel-react": "^8.6.0",
"heic2any": "^0.0.4",
"input-otp": "^1.4.2",
"langsmith": "^0.5.21",
"libheif-js": "^1.19.8",
"lucide-react": "^0.577.0",
"mammoth": "^1.12.0",
"next": "^14.0.0",
"next-themes": "^0.4.6",
"postcss": "^8.5.8",
"radix-ui": "^1.4.3",
"react": "^18.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^18.2.0",
"react-dropzone": "^15.0.0",
"react-resizable-panels": "^4.7.2",
"recharts": "^2.15.4",
"shadcn": "^4.0.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tesseract.js": "^7.0.0",
"tw-animate-css": "^1.4.0",
"unpdf": "^1.4.0",
"uuid": "^9.0.1",
"vaul": "^1.1.2",
"word-extractor": "^1.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.0",
"@types/word-extractor": "^1.0.6",
"eslint": "^8.0.0",
"eslint-config-next": "^14.0.0",
"prettier": "^3.8.1",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
}
}