-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.31 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
{
"name": "openai-experiment",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"postbuild": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs && node ./scripts/generate-sitemap.mjs",
"lint": "next lint",
"start": "next start",
"studio": "prisma studio",
"db-local": "docker-compose up",
"db-dev": "pscale connect experiments dev --port 3309",
"db-prod": "pscale connect experiments main --port 3309"
},
"dependencies": {
"@headlessui/react": "^1.7.12",
"@heroicons/react": "^2.0.16",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.11.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^4.24.10",
"@trpc/client": "^10.13.2",
"@trpc/next": "^10.13.2",
"@trpc/react-query": "^10.13.2",
"@trpc/server": "^10.13.2",
"axios": "^1.3.4",
"clsx": "^1.2.1",
"contentlayer": "^0.3.0",
"daisyui": "^2.51.2",
"date-fns": "^2.29.3",
"fathom-client": "^3.5.0",
"gpt-3-encoder": "^1.1.4",
"next": "13.2.3",
"next-auth": "^4.19.2",
"next-contentlayer": "^0.3.0",
"openai": "^3.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "^0.31.3",
"superjson": "1.12.2",
"zod": "^3.20.6"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.3.7",
"@types/node": "^18.14.2",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/rss": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.35.0",
"eslint-config-next": "13.2.3",
"globby": "^13.1.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"prisma": "^4.11.0",
"reading-time": "^1.5.0",
"rehype": "^12.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-code-titles": "^1.2.0",
"rehype-prism-plus": "^1.5.1",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"rss": "^1.2.2",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5"
},
"ct3aMetadata": {
"initVersion": "7.5.0"
}
}