-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.92 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.92 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
{
"name": "gpt4-langchain-pdf-chatbot",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "Mayooear<twitter:@mayowaoshin>",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3088",
"check-types": "tsc --pretty --noEmit",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"test-all": "yarn check-lint && yarn check-types && yarn build",
"prepare": "husky install",
"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"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@langchain/community": "^0.0.17",
"@langchain/core": "^0.1.12",
"@langchain/openai": "^0.0.11",
"@microsoft/fetch-event-source": "^2.0.1",
"@mui/material": "^5.15.14",
"@pinecone-database/pinecone": "^1.1.0",
"@radix-ui/react-accordion": "^1.1.1",
"add": "^2.0.6",
"axios": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"classnames": "^2.5.1",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"formidable": "^2.1.1",
"langchain": "^0.1.2",
"lucide-react": "^0.125.0",
"next": "13.2.3",
"pdf-lib": "^1.17.1",
"pdf-parse": "1.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.5",
"react-toastify": "^10.0.4",
"react-typing-animation": "^1.6.2",
"sass": "^1.72.0",
"sharp": "^0.32.6",
"tailwind-merge": "^1.10.0",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/js-cookie": "^3.0.5",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-typing-animation": "^1.6.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"autoprefixer": "^10.4.13",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.0",
"postcss": "^8.4.21",
"prettier": "2.5.1",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"keywords": [
"starter",
"gpt4",
"pinecone",
"typescript",
"nextjs",
"langchain",
"law",
"legal",
"pdf",
"openai"
]
}