forked from mayooear/gpt4-pdf-chatbot-langchain
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
114 lines (114 loc) · 3.07 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
{
"name": "gaib",
"version": ".2.0",
"private": true,
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "Chris Kennedy",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p ${PORT:-3000}",
"export": "next export",
"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",
"docker-build": "docker build . -t gaib",
"twitch": "tsx -r dotenv/config scripts/twitchChat.ts",
"migrateS3toDB": "tsx -r dotenv/config scripts/migrateS3toDB.ts"
},
"dependencies": {
"@google-cloud/storage": "^6.11.0",
"@google-cloud/text-to-speech": "^4.2.1",
"@microsoft/fetch-event-source": "^2.0.1",
"@pinecone-database/pinecone": "^0.0.14",
"@radix-ui/react-accordion": "^1.1.1",
"@stripe/stripe-js": "^1.52.1",
"@types/jsdom": "^21.1.1",
"bad-words": "^3.0.4",
"child_process": "^1.0.2",
"clsx": "^1.2.1",
"compromise": "^14.8.2",
"copy-to-clipboard": "^3.3.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"face-api.js": "^0.22.2",
"firebase": "^8.10.1",
"firebase-admin": "^11.10.1",
"firebase-functions": "^4.4.1",
"fs": "0.0.1-security",
"fs-extra": "^11.1.1",
"fuse.js": "^6.6.2",
"fuzzyset.js": "^1.0.7",
"gpt3-tokenizer": "^1.1.5",
"gtts.js": "^1.0.1",
"howler": "^2.2.3",
"langchain": "0.0.125",
"lodash": "^4.17.21",
"lucide-react": "^0.125.0",
"net": "^1.0.2",
"next": "13.2.3",
"next-firebase-auth": "^0.15.0",
"node-fetch": "^3.3.1",
"openai": "^3.2.1",
"pdf-lib": "^1.17.1",
"pdf-parse": "1.1.1",
"pixi.js": "6.5.4",
"querystring": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-firebase-hooks": "^3.0.4",
"react-markdown": "^8.0.5",
"react-modal": "^3.16.1",
"sharp": "^0.32.0",
"stripe": "^12.2.0",
"tailwind-merge": "^1.10.0",
"three": "^0.155.0",
"tls": "^0.0.1",
"tmi.js": "^1.8.5",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13",
"winston": "^3.8.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/fs-extra": "^11.0.1",
"@types/fuzzyset.js": "^0.0.2",
"@types/howler": "^2.2.7",
"@types/lodash": "^4.14.195",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.16.0",
"@types/three": "^0.155.0",
"@types/tmi.js": "^1.8.3",
"@types/ws": "^8.5.5",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.43.0",
"eslint-config-next": "13.2.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.7",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"keywords": [
"starter",
"gpt4",
"pinecone",
"typescript",
"nextjs",
"langchain",
"law",
"legal",
"pdf",
"openai"
]
}