forked from LibreChat-AI/librechat.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.61 KB
/
package.json
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "librechat.ai",
"version": "1.0.0",
"description": "librechat.ai",
"scripts": {
"dev": "next dev -p 3333",
"build": "next build",
"postbuild": "node scripts/clean-cache.ts",
"start": "next start -p 3333",
"analyze": "cross-env ANALYZE=true next build",
"postbuild:old": "next-sitemap && echo 'Removing .next/cache to resolve Nextra caching bug' && rm -rf .next/cache",
"lint": "eslint --cache --ignore-path .gitignore --max-warnings 0 .",
"lint:prettier": "prettier --cache --check --ignore-path .gitignore --ignore-path .prettierignore .",
"prettier": "pnpm lint:prettier --write",
"prepare": "husky"
},
"homepage": "https://www.librechat.ai",
"dependencies": {
"@calcom/embed-react": "^1.5.0",
"@glidejs/glide": "^3.6.0",
"@headlessui/react": "^2.0.3",
"@hookform/resolvers": "^3.3.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@supabase/supabase-js": "^2.43.1",
"@tanstack/react-table": "^8.16.0",
"@vercel/analytics": "^1.2.2",
"@vercel/og": "^0.6.2",
"@vercel/speed-insights": "^1.0.10",
"@vidstack/react": "^0.6.14",
"ai": "^3.1.5",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.19",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-unicorn": "^53.0.0",
"framer-motion": "^11.1.9",
"geist": "^1.3.0",
"gpt3-tokenizer": "^1.1.5",
"install": "^0.13.0",
"js-yaml": "^4.1.0",
"langfuse": "3.10.0",
"lucide-react": "^0.378.0",
"mongodb": "^6.6.1",
"mongoose": "^8.3.4",
"next": "^14.2.1",
"next-auth": "^4.24.7",
"next-sitemap": "^4.2.3",
"nextra": "3.0.0-alpha.22",
"nextra-theme-docs": "3.0.0-alpha.22",
"openai-edge": "^1.2.2",
"postcss": "^8.4.38",
"posthog-js": "^1.131.4",
"react": "^18.2.0",
"react-ace": "^11.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.4",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"react-social-icons": "^6.16.0",
"react-syntax-highlighter": "^15.5.0",
"react-tweet": "^3.2.1",
"remark-gfm": "^4.0.0",
"sharp": "^0.33.3",
"styled-components": "^6.1.11",
"tailwind-merge": "^2.2.2",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"validator": "^13.12.0",
"webpack": "^5.91.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.2.1",
"@types/node": "18.16.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"optionalDependencies": {
"crisp-sdk-web": "^1.0.21"
},
"nextBundleAnalysis": {
"budget": 358400,
"budgetPercentIncreaseRed": 20,
"minimumChangeThreshold": 50,
"showDetails": true
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
}
}