-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
90 lines (90 loc) · 2.75 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
{
"name": "shreddit",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "next lint",
"lint:fix": "next lint --fix",
"postinstall": "prisma generate",
"preview": "next build && next start",
"start": "next start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@editorjs/editorjs": "^2.30.7",
"@editorjs/embed": "^2.7.6",
"@editorjs/header": "^2.8.8",
"@editorjs/list": "^2.0.2",
"@editorjs/paragraph": "^2.11.6",
"@editorjs/table": "^2.4.3",
"@hookform/resolvers": "^3.9.1",
"@mantine/hooks": "^7.15.1",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^6.0.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.3",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-toast": "^1.2.3",
"@t3-oss/env-nextjs": "^0.11.1",
"@tanstack/react-query": "^4.36.1",
"@uploadthing/react": "^7.1.3",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.4.1",
"axios": "^1.8.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"editorjs-react-renderer": "^3.5.1",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.468.0",
"nanoid": "^5.1.0",
"next": "^15.2.3",
"next-auth": "^4.24.11",
"next-themes": "^0.4.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.3.5",
"react-hook-form": "^7.54.1",
"react-textarea-autosize": "^8.5.6",
"tailwind-merge": "^2.5.5",
"uploadthing": "^7.4.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@editorjs/code": "^2.9.3",
"@editorjs/image": "^2.10.1",
"@editorjs/inline-code": "^1.5.1",
"@editorjs/link": "^2.6.2",
"@editorjs/quote": "^2.7.6",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/eslint": "^8.56.12",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.10.2",
"@types/react": "^18.3.16",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.0.1",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2"
},
"ct3aMetadata": {
"initVersion": "7.14.1"
},
"packageManager": "pnpm@9.15.0"
}