-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
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
{
"name": "gptea-news",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"db:generate": "prisma generate",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\"",
"embeddings": "tsx scripts/embedding.ts",
"test:search": "tsx scripts/search.ts"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"endOfLine": "lf",
"sqlKeywordCase": "lower"
},
"dependencies": {
"@dqbd/tiktoken": "^1.0.7",
"@novu/node": "^0.14.0",
"@prisma/client": "4.13.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-label": "^2.0.1",
"@supabase/supabase-js": "^2.13.0",
"@types/node": "18.15.10",
"@types/react": "18.0.30",
"@types/react-dom": "18.0.11",
"@vercel/analytics": "^1.0.1",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"common-tags": "^1.8.2",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"focus-visible": "^5.2.0",
"github-slugger": "^2.0.0",
"gpt3-tokenizer": "^1.1.5",
"jose": "^4.14.4",
"langchain": "^0.0.68",
"lucide-react": "^0.128.0",
"motion": "^10.15.5",
"next": "13.3.4",
"next-themes": "^0.2.1",
"openai": "^3.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"recma-import-images": "^0.0.3",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"remark-rehype-wrap": "^0.0.2",
"remark-unwrap-images": "^3.0.1",
"shiki": "^0.14.2",
"sse.js": "^0.6.1",
"swr": "^2.1.5",
"tailwind-merge": "^1.10.0",
"tailwindcss-animate": "^1.0.5",
"typescript": "5.0.2",
"unist-builder": "^3.0.1",
"unist-util-filter": "^4.0.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/estree": "^1.0.0",
"@types/mdast": "^3.0.11",
"autoprefixer": "^10.4.14",
"dotenv": "^16.0.3",
"postcss": "^8.4.21",
"postcss-focus-visible": "^8.0.2",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.7",
"prisma": "^4.13.0",
"tailwindcss": "^3.3.2",
"tsx": "^3.12.6"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}