forked from weijunext/smart-excel-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.5 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
{
"private": true,
"scripts": {
"dev": "next dev",
"dev:mdx": "concurrently \"contentlayer dev\" \"next dev\"",
"build:local": "contentlayer build && next build",
"build": "contentlayer build && prisma generate && prisma db push && next build",
"start": "next start",
"prisma:init": "npx prisma init",
"prisma:generate": "npx prisma generate",
"prisma:migrate:init": "npx prisma migrate dev --name init",
"docker:up": "docker-compose up",
"docker:down": "docker-compose down"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@headlessui/tailwindcss": "^0.1.2",
"@heroicons/react": "^2.0.13",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.2.0",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@tailwindcss/forms": "^0.5.6",
"@types/mdx": "^2.0.6",
"@upstash/redis": "^1.22.0",
"@vercel/analytics": "^0.1.8",
"ai": "^2.1.21",
"axios": "^1.4.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"concurrently": "^8.2.0",
"contentlayer": "^0.3.4",
"dayjs": "^1.11.10",
"ioredis": "^5.3.2",
"lemonsqueezy.ts": "^0.1.7",
"logging-service": "^1.0.1",
"lucide-react": "^0.264.0",
"next": "^13.4.10",
"next-auth": "^4.22.3",
"next-contentlayer": "^0.3.4",
"next-mdx-remote": "^4.4.1",
"next-sitemap": "^4.2.3",
"next-themes": "^0.2.1",
"openai": "^4.4.0",
"openai-edge": "^1.2.0",
"prisma": "^5.4.2",
"raw-body": "^2.5.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.42.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-use-measure": "^2.1.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-pretty-code": "^0.10.0",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.1.0",
"rehype-stringify": "^9.0.3",
"remark-gfm": "^3.0.1",
"remark-math": "^5.1.1",
"remark-rehype": "^10.1.0",
"server-only": "^0.0.1",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.12",
"postcss": "^8.4.18",
"postcss-import": "^15.1.0",
"tailwindcss": "^3.3.3",
"typescript": "4.9.4"
}
}