-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.94 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
{
"name": "dialogia",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "DIALOGIA — plateforme d'IA médiatrice pour le dialogue interreligieux",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run",
"test:ai": "node scripts/verify_ai_models.mjs",
"test:backend": "node scripts/verify_backend.mjs",
"test:acceptance": "node scripts/verify_dialogue_acceptance.mjs",
"test:live:e2e": "node scripts/verify_live_turn_e2e.mjs",
"test:watch": "vitest",
"test:dialogia": "node scripts/verify_dialogia_e2e.mjs",
"deploy:analysis": "supabase functions deploy dialogue-agent multi-text-report --project-ref bhkqgpcheyosnkpcycrj --use-api"
},
"dependencies": {
"@google/genai": "^2.11.0",
"@supabase/supabase-js": "^2.45.4",
"@tanstack/react-query": "^5.56.2",
"clsx": "^2.1.1",
"docx": "^9.7.1",
"framer-motion": "^12.42.2",
"i18next": "^26.3.6",
"jspdf": "^4.2.1",
"lucide-react": "^0.445.0",
"mammoth": "^1.12.0",
"papaparse": "^5.5.4",
"pdfjs-dist": "^6.1.200",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^17.0.9",
"react-router-dom": "^6.30.4",
"zustand": "^4.5.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/papaparse": "^5.5.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^6.0.3",
"autoprefixer": "^10.4.20",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"postcss": "^8.4.47",
"supabase": "^2.109.1",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.2",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
}
}