-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 3.61 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "askdit",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "pnpm db:generate",
"db:generate": "pnpm dlx dotenv-cli -e .env.local -- prisma generate",
"db:push": "pnpm dlx dotenv-cli -e .env.local -- prisma db push",
"db:studio": "pnpm dlx dotenv-cli -e .env.local -- prisma studio"
},
"dependencies": {
"@editorjs/code": "^2.9.0",
"@editorjs/editorjs": "^2.30.2",
"@editorjs/embed": "^2.7.4",
"@editorjs/header": "^2.8.7",
"@editorjs/image": "^2.9.2",
"@editorjs/inline-code": "^1.5.0",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^1.9.0",
"@editorjs/paragraph": "^2.11.6",
"@editorjs/quote": "^2.6.0",
"@editorjs/table": "^2.3.0",
"@formkit/auto-animate": "^0.8.2",
"@hookform/resolvers": "^3.9.0",
"@mantine/hooks": "^7.11.2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.15.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"@sotaproject/strikethrough": "^1.0.1",
"@t3-oss/env-nextjs": "^0.10.1",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"@uiball/loaders": "^1.3.1",
"axios": "^1.7.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"date-fns": "^3.6.0",
"editorjs-drag-drop": "^1.1.14",
"editorjs-react-renderer": "^3.5.1",
"embla-carousel-react": "8.1.5",
"framer-motion": "^11.3.6",
"imagekit": "^5.0.1",
"imagekit-javascript": "^3.0.1",
"ioredis": "^5.4.1",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.408.0",
"nanoid": "^5.0.7",
"nanoid-dictionary": "^4.3.0",
"next": "14.2.3",
"next-auth": "^4.24.7",
"next-themes": "^0.3.0",
"rate-limiter-flexible": "^5.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"react-loading-skeleton": "^3.4.0",
"react-textarea-autosize": "^8.5.3",
"react-web-share": "^2.0.2",
"shadcn-ui": "^0.8.0",
"sharp": "^0.33.4",
"sonner": "^1.5.0",
"superjson": "^2.2.1",
"tailwind-gradient-mask-image": "^1.2.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"url-metadata": "^4.1.1",
"vaul": "^0.9.1",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.15.1",
"tailwindcss": "^3.4.6",
"typescript": "^5.5.3"
},
"pnpm": {
"allowedDeprecatedVersions": {
"@uiball/loaders": "^1.3.0"
}
}
}