-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
171 lines (171 loc) · 4.79 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "doc-solver",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "https://github.com/ai-hermes",
"scripts": {
"dev": "cp .env.dev .env.local && next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"**/*.+(ts|js|tsx)\" --write",
"ingest": "tsx -r dotenv/config scripts/ingest-data.ts",
"demo": "node demos/pdf.cjs",
"ingest-data": "tsx -r dotenv/config demos/db-demo.ts",
"postinstall": "husky install && patch-package",
"lint-staged": "lint-staged"
},
"overrides": {
"next-contentlayer": {
"next": "$next"
}
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.14",
"@hookform/resolvers": "^3.3.2",
"@langchain/community": "^0.0.15",
"@microsoft/fetch-event-source": "^2.0.1",
"@pinecone-database/pinecone": "1.1.0",
"@prisma/client": "^5.6.0",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@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-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@t3-oss/env-nextjs": "^0.7.1",
"@tailwindcss/typography": "^0.5.10",
"@tanstack/react-query": "^5.18.1",
"@tanstack/react-table": "^8.11.6",
"@vercel/postgres": "^0.5.1",
"bee-queue": "^1.7.1",
"class-variance-authority": "^0.7.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"compromise": "^14.10.1",
"contentlayer": "^0.3.4",
"cos-js-sdk-v5": "^1.5.0",
"cos-nodejs-sdk-v5": "^2.12.6",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.10",
"dotenv": "^16.0.3",
"ioredis": "^5.3.2",
"jotai": "^2.6.0",
"langchain": "^0.0.214",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.312.0",
"mdast-util-toc": "^7.0.0",
"moment-timezone": "^0.5.45",
"next": "^13.5.6",
"next-auth": "^4.24.5",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"nodemailer": "^6.9.13",
"openai": "^4.17.4",
"pdf-parse": "1.1.1",
"pdfjs-dist": "2.16.105",
"qcloud-cos-sts": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.3",
"react-markdown": "^8.0.5",
"react-pdf": "^7.5.1",
"react-pdf-highlighter": "^6.1.0",
"react-resizable-panels": "^1.0.9",
"react-rnd": "^10.1.10",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.0",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"request": "^2.88.2",
"sharp": "^0.33.0",
"spark-md5": "^3.0.2",
"sse.js": "^2.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"unist-util-visit": "^5.0.0",
"weaviate-ts-client": "^1.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/crypto-js": "^4.2.1",
"@types/lodash": "^4.14.202",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^18.18.12",
"@types/nodemailer": "^6.4.15",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/request": "^2.48.12",
"@types/spark-md5": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"autoprefixer": "^10.4.13",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8.35.0",
"eslint-config-next": "^14.0.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"patch-package": "^8.0.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prisma": "^5.8.0",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.1",
"tsx": "^3.14.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{js,jsx}": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"starter",
"gpt4",
"pinecone",
"typescript",
"nextjs",
"langchain",
"law",
"legal",
"pdf",
"openai"
]
}