-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.02 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.02 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
94
95
96
97
98
99
100
101
{
"name": "two-ais",
"version": "0.1.0",
"private": true,
"browserslist": [
"defaults and supports es6-module",
"not dead",
"not IE 11"
],
"scripts": {
"dev": "next dev",
"dev:turbo": "next dev --turbopack",
"dev:clean": "rm -rf .next && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-appcheck": "node scripts/check-appcheck.js",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --run --coverage",
"test:properties": "vitest --run --testNamePattern=\"Property [0-9]+:\""
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.21",
"@google-cloud/secret-manager": "^6.0.1",
"@google-cloud/translate": "^9.2.0",
"@langchain/anthropic": "^0.3.18",
"@langchain/community": "^0.3.42",
"@langchain/core": "^0.3.44",
"@langchain/google-genai": "^0.2.3",
"@langchain/mistralai": "^0.2.0",
"@langchain/openai": "^0.5.5",
"@langchain/xai": "^0.0.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.2.2",
"@radix-ui/react-collapsible": "^1.1.10",
"@radix-ui/react-dropdown-menu": "^2.1.12",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-popover": "^1.1.11",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.4",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"firebase": "^11.10.0",
"firebase-admin": "^13.2.0",
"jszip": "^3.10.1",
"langchain": "^0.3.21",
"lucide-react": "^0.488.0",
"next": "15.2.8",
"next-i18next": "^15.4.2",
"next-themes": "^0.4.6",
"ollama": "^0.6.3",
"pino": "^9.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"remove-markdown": "^0.6.2",
"tailwind-merge": "^3.2.0",
"three": "^0.173.0",
"tw-animate-css": "^1.2.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@next/bundle-analyzer": "^15.3.5",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"eslint": "^9",
"eslint-config-next": "15.2.5",
"fast-check": "^4.3.0",
"jsdom": "^27.2.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.14"
},
"overrides": {
"@langchain/community": {
"firebase-admin": "^13.2.0"
}
}
}