-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 3.7 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
{
"name": "ava",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"server": "nodemon --exec ts-node-esm server.ts",
"preview": "vite preview",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"coverage": "vitest run --coverage",
"test": "vitest",
"test:ui": "vitest --ui",
"test-script": "ts-node-esm src/scripts.ts"
},
"dependencies": {
"@chatscope/chat-ui-kit-react": "^1.10.1",
"@chatscope/chat-ui-kit-styles": "^1.4.0",
"@pinecone-database/pinecone": "^0.1.5",
"@supabase/supabase-js": "^2.31.0",
"@tiptap/core": "^2.0.3",
"@tiptap/extension-color": "^2.0.3",
"@tiptap/extension-highlight": "^2.0.3",
"@tiptap/extension-horizontal-rule": "^2.0.3",
"@tiptap/extension-image": "^2.0.3",
"@tiptap/extension-link": "^2.0.0-beta.220",
"@tiptap/extension-placeholder": "2.0.3",
"@tiptap/extension-task-item": "^2.0.3",
"@tiptap/extension-task-list": "^2.0.3",
"@tiptap/extension-text-style": "^2.0.3",
"@tiptap/extension-underline": "^2.0.3",
"@tiptap/pm": "^2.0.3",
"@tiptap/react": "^2.0.3",
"@tiptap/starter-kit": "^2.0.3",
"@tiptap/suggestion": "^2.0.3",
"@types/uuid": "^9.0.2",
"@uidotdev/usehooks": "^2.0.1",
"@xenova/transformers": "^2.6.0",
"@xstate/react": "^3.2.2",
"ai": "^2.2.12",
"axios": "^1.4.0",
"bottleneck": "^2.19.5",
"cheerio": "1.0.0-rc.12",
"classnames": "^2.3.2",
"d3": "^7.8.5",
"dexie": "^3.2.4",
"dexie-react-hooks": "^1.1.6",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"langchain": "^0.0.150",
"lodash.isequal": "^4.5.0",
"lucide-react": "^0.257.0",
"openai": "^3.3.0",
"pdf-parse": "^1.1.1",
"react": "^18.2.0",
"react-audio-voice-recorder": "^1.2.1",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-markdown": "^8.0.5",
"react-modal": "^3.16.1",
"react-moveable": "^0.55.0",
"react-pdf": "^7.3.3",
"react-router-dom": "^6.14.1",
"react-simple-pull-to-refresh": "^1.3.3",
"react-tabs": "^6.0.1",
"react-toastify": "^9.1.3",
"remark-footnotes": "^4.0.1",
"socket.io-client": "^4.6.2",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.1",
"tw-elements": "1.0.0-beta2",
"tw-elements-react": "1.0.0-alpha1",
"use-debounce": "^9.0.3",
"uuid": "^9.0.0",
"xstate": "^4.37.2",
"youtube-transcript": "^1.0.6"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^20.1.4",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-modal": "^3.16.2",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"nodemon": "^2.0.22",
"postcss": "^8.4.23",
"postcss-nested": "^6.0.1",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.2",
"vite": "^4.3.2",
"vite-plugin-pwa": "^0.16.5",
"vitest": "^0.31.0",
"workbox-window": "^7.0.0"
}
}