-
Notifications
You must be signed in to change notification settings - Fork 177
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
{
"name": "all-model-chat",
"private": true,
"version": "1.8.8",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:api": "tsc -p server/tsconfig.json",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,css,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,css,json}\"",
"typecheck": "tsc --noEmit",
"start:api": "node server/dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@google/genai": "^1.2.0",
"@viz-js/viz": "^3.25.0",
"dompurify": "^3.1.6",
"highlight.js": "^11.9.0",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"lucide-react": "^0.417.0",
"mermaid": "^10.9.1",
"pdfjs-dist": "4.4.168",
"pyodide": "^0.25.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-pdf": "^9.1.0",
"react-virtuoso": "^4.7.11",
"rehype-highlight": "^7.0.0",
"rehype-katex": "^7.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2",
"xlsx": "^0.18.5",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/turndown": "^5.0.5",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^10.1.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.58.0",
"vite": "^5.3.3",
"vite-plugin-static-copy": "^1.0.0",
"vitest": "^4.1.2"
}
}