-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3.01 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
{
"name": "local_llm_chat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "env-cmd -f .env.dev next dev | pino-pretty",
"build:prod": "env-cmd -f .env.prod next build",
"start:prod": "env-cmd -f .env.prod next start",
"build": "env-cmd -f .env.dev next build",
"start": "env-cmd -f .env.dev next start",
"lint": "next lint",
"prepare": "husky install && next telemetry disable",
"fmt": "prettier --config ./.prettierrc \"**/*.{mts,ts,tsx,js}\" --write",
"generate": "env-cmd -f .env.dev drizzle-kit generate:pg",
"migrate": "env-cmd -f .env.dev tsx src/lib/db/migrate.mts",
"introspect": "env-cmd -f .env.dev drizzle-kit studio"
},
"lint-staged": {
"**/*.{js,mts,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@langchain/community": "^0.0.14",
"@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-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^5.17.1",
"@tanstack/react-query-devtools": "^5.17.1",
"@useverk/drizzle-pgvector": "^1.0.11",
"@xenova/transformers": "^2.13.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.29.3",
"env-cmd": "^10.1.0",
"http-status-codes": "^2.3.0",
"langchain": "^0.0.214",
"lucide-react": "^0.304.0",
"next": "^14.0.4",
"next-themes": "^0.2.1",
"path": "^0.12.7",
"pdf-parse": "^1.1.1",
"pg": "^8.11.3",
"pino-pretty": "^10.3.1",
"postgres": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-katex": "^3.0.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"rehype-katex": "^7.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"tailwind-merge": "^2.2.0",
"tailwind-scrollbar": "^3.0.5",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@tanstack/eslint-plugin-query": "^5.17.1",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/react-katex": "^3.0.4",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.20.9",
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.13.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"lint-staged": "11.1.4",
"pino": "^8.17.2",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}