-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.73 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.73 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
{
"name": "louis",
"version": "0.0.1",
"private": true,
"description": "Louis — l'IA juridique souveraine, open-source, sous votre contrôle.",
"license": "AGPL-3.0-or-later",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:setup": "tsx scripts/setup-db.ts && drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx scripts/seed.ts",
"demo": "tsx scripts/seed-demo.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"sbom": "npm sbom --sbom-format=cyclonedx --omit=dev > sbom.cdx.json && echo 'SBOM CycloneDX écrit dans sbom.cdx.json'"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.77",
"@ai-sdk/mistral": "^3.0.36",
"@ai-sdk/openai": "^3.0.63",
"@ai-sdk/react": "^3.0.182",
"@aws-sdk/client-s3": "^3.1045.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@radix-ui/react-use-controllable-state": "^1.2.2",
"@tabler/icons-react": "^3.41.1",
"@xyflow/react": "^12.10.2",
"ai": "^6.0.180",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"docx": "^9.6.1",
"docx-preview": "^0.3.7",
"drizzle-orm": "^0.45.2",
"fast-xml-parser": "^5.8.0",
"ioredis": "^5.10.1",
"jszip": "^3.10.1",
"libreoffice-convert": "^1.8.1",
"mammoth": "^1.12.0",
"motion": "^12.38.0",
"nanoid": "^5.1.11",
"next": "16.2.6",
"next-auth": "^5.0.0-beta.31",
"next-themes": "^0.4.6",
"pdf-parse": "^1.1.1",
"pdfkit": "^0.18.0",
"postgres": "^3.4.9",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"react-pdf": "^10.4.1",
"remark-gfm": "^4.0.1",
"shadcn": "^4.2.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22",
"@types/pdf-parse": "^1.1.5",
"@types/pdfkit": "^0.17.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.1.6",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.4.2",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.6"
},
"overrides": {
"tmp": "^0.2.7",
"postcss": "^8.5.10"
}
}