-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
52 lines (52 loc) · 1.32 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
{
"name": "gpt3-pgvector-starter",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@supabase/supabase-js": "^2.21.0",
"autoprefixer": "^10.4.14",
"cheerio": "^1.0.0-rc.12",
"common-tags": "^1.8.2",
"daisyui": "^2.51.6",
"eslint-config-next": "13.3.1",
"eventsource-parser": "^1.0.0",
"framer-motion": "^10.12.4",
"gpt3-tokenizer": "^1.1.5",
"next": "^13.3.1",
"parse-numeric-range": "^1.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-markdown": "^8.0.7",
"react-syntax-highlighter": "^15.5.0",
"react-text-transition": "^3.1.0",
"react-use-measure": "^2.1.1",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/node": "18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react-syntax-highlighter": "^15.5.6",
"eslint": "^8.39.0",
"postcss": "^8.4.23",
"prettier": "2.8.8",
"supabase": "^1.52.2",
"swr": "^2.1.5",
"tailwindcss": "^3.3.2",
"ts-node": "^10.9.1",
"typescript": "5.0.4"
},
"prettier": {
"arrowParens": "always",
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none"
}
}