-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
executable file
·50 lines (50 loc) · 1.23 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
{
"name": "wikichat",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"seed": "ts-node ./scripts/populateDb.ts",
"lint": "next lint"
},
"dependencies": {
"@datastax/astra-db-ts": "^0.1.3",
"@fontsource/space-grotesk": "^5.0.16",
"@headlessui/react": "^1.7.18",
"@langchain/cohere": "^0.0.2",
"@langchain/community": "^0.0.20",
"@langchain/core": "^0.1.17",
"@langchain/openai": "^0.0.12",
"@types/node": "^20.8.10",
"ai": "^2.2.25",
"geist": "^1.1.0",
"next": "14.0.1",
"openai": "^4.20.0",
"react": "^18",
"react-bootstrap-icons": "^1.10.3",
"react-dom": "^18",
"react-markdown": "^9.0.0",
"react-tooltip": "^5.26.0",
"remark-gfm": "^4.0.0",
"tailwind-scrollbar": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/react": "^18.2.37",
"autoprefixer": "^10",
"dotenv": "^16.3.1",
"eslint": "^8",
"eslint-config-next": "13.5.5",
"eslint-config-prettier": "^9.0.0",
"postcss": "^8",
"tailwindcss": "^3"
},
"overrides": {
"@langchain/community": {
"@datastax/astra-db-ts": "^0.1.3"
}
}
}