forked from ClickHouse/librechat-admin-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.8 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.8 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
{
"name": "librechat-admin-panel",
"private": true,
"type": "module",
"imports": {
"#/*": "./src/*"
},
"scripts": {
"postinstall": "patch-package",
"dev": "vite dev --port 3000",
"build": "vite build",
"start": "bun server.ts",
"preview": "vite preview",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"sort-imports": "bun run scripts/sort-imports.ts",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,css,json}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,css,json}'"
},
"dependencies": {
"@clickhouse/click-ui": "0.2.0-rc.4",
"@librechat/data-schemas": "^0.0.48",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "^0.10.0",
"@tanstack/react-query": "^5.95.2",
"@tanstack/react-router": "^1.168.10",
"@tanstack/react-router-devtools": "^1.166.11",
"@tanstack/react-router-ssr-query": "^1.166.10",
"@tanstack/react-start": "^1.167.16",
"@tanstack/router-plugin": "^1.167.12",
"@types/bun": "^1.3.11",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.3.1",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"input-otp": "^1.4.2",
"js-yaml": "^4.1.1",
"librechat-data-provider": "^0.8.407",
"lucide-react": "^0.545.0",
"prom-client": "^15.1.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-i18next": "^16.5.4",
"react-movable": "^3.4.1",
"react-textarea-autosize": "^8.5.9",
"styled-components": "^6.3.11",
"tailwindcss": "^4.1.18",
"zod": "^4.3.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/node": "^4.2.2",
"@tanstack/devtools-vite": "^0.3.11",
"@tanstack/react-query-devtools": "^5.91.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.2.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^5.0.4",
"eslint": "^10.1.0",
"eslint-plugin-click-ui": "file:./tools/eslint-plugin-click-ui",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-tailwind-canonical-classes": "^1.3.1",
"jsdom": "^27.0.0",
"lint-staged": "^16.4.0",
"patch-package": "^8.0.1",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "^5.7.2",
"vite": "^8.0.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^3.0.5"
},
"overrides": {
"@radix-ui/react-dialog": "1.1.15"
}
}