-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.09 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": "typesafe-supabase-example",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"start": "next start",
"db": "npx prisma db push && npx prisma generate",
"generate": "npx prisma generate"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@paralleldrive/cuid2": "^2.2.0",
"@prisma/client": "^4.5.0",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-label": "^2.0.1",
"@supabase/supabase-js": "^2.12.0",
"@tanstack/react-query": "^4.16.0",
"@tanstack/react-query-devtools": "^4.28.0",
"@trpc/client": "^10.0.0",
"@trpc/next": "^10.0.0",
"@trpc/react-query": "^10.0.0",
"@trpc/server": "^10.0.0",
"bright": "^0.7.0",
"chatgpt": "^5.1.2",
"class-variance-authority": "^0.4.0",
"clsx": "^1.2.1",
"copy-to-clipboard": "^3.3.3",
"framer-motion": "^10.8.4",
"highlight.js": "^11.7.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.0",
"lucide": "^0.127.0",
"lucide-react": "^0.127.0",
"mjml": "^4.13.0",
"next": "13.0.2",
"next-auth": "^4.20.1",
"nodemailer": "^6.9.1",
"npm": "^9.6.2",
"openai": "^3.2.1",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-highlight": "^0.15.0",
"react-markdown": "^8.0.6",
"react-syntax-highlighter": "^15.5.0",
"react-use-measure": "^2.1.1",
"sonner": "^0.3.0",
"superjson": "1.9.1",
"tailwind-merge": "^1.10.0",
"zod": "^3.18.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-highlight": "^0.12.5",
"@types/react-syntax-highlighter": "^15.5.6",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.21",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{tsx},*.{ts},*.{mdx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}