forked from ujen5173/hash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.08 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.08 KB
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
{
"name": "Hashnode",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "env-cmd -f .env next dev",
"dev-prod": "env-cmd -f .env.production next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"prisma-studio": "npx prisma studio",
"prisma-studio-prod": "env-cmd -f .env.production npx prisma studio",
"prisma-dev": "npx prisma db push && npx prisma generate",
"prisma-dev-prod": "env-cmd -f .env.production npx prisma db push && npx prisma generate"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@mantine/core": "^6.0.15",
"@mantine/hooks": "^6.0.15",
"@mantine/next": "^6.0.11",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^5.0.0",
"@t3-oss/env-nextjs": "^0.2.1",
"@tabler/icons-react": "^2.23.0",
"@tanstack/react-query": "^4.28.0",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-blockquote": "^2.0.4",
"@tiptap/extension-bold": "^2.0.4",
"@tiptap/extension-code": "^2.0.4",
"@tiptap/extension-document": "^2.0.4",
"@tiptap/extension-heading": "^2.0.4",
"@tiptap/extension-highlight": "^2.0.4",
"@tiptap/extension-horizontal-rule": "^2.0.4",
"@tiptap/extension-italic": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-paragraph": "^2.0.4",
"@tiptap/extension-placeholder": "^2.0.4",
"@tiptap/extension-strike": "^2.0.4",
"@tiptap/extension-text": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@tiptap/suggestion": "^2.0.4",
"@trpc/client": "^10.18.0",
"@trpc/next": "^10.18.0",
"@trpc/react-query": "^10.18.0",
"@trpc/server": "^10.18.0",
"@types/remove-markdown": "^0.3.1",
"@types/uuid": "^9.0.1",
"@uploadthing/react": "^5.2.0",
"env-cmd": "^10.1.0",
"fs-extra": "^11.1.1",
"next": "^13.4.1",
"next-auth": "^4.21.0",
"nextjs-toploader": "^1.4.2",
"pg": "^8.11.0",
"puppeteer": "^20.9.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.7",
"react-toastify": "^9.1.3",
"reading-time": "^1.5.0",
"remark-gfm": "^3.0.1",
"remove-markdown": "^0.5.0",
"slugify": "^1.6.6",
"superjson": "1.12.2",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.2",
"ts-node": "^10.9.1",
"uploadthing": "^5.2.1",
"use-debounce": "^9.0.4",
"uuid": "^9.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/eslint": "^8.21.3",
"@types/node": "^20.4.2",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-next": "^13.4.1",
"postcss": "^8.4.21",
"prettier": "^2.8.6",
"prettier-plugin-tailwindcss": "^0.2.6",
"prisma": "^5.0.0",
"tailwindcss": "^3.3.0",
"typescript": "^5.1.6"
},
"ct3aMetadata": {
"initVersion": "7.13.0"
}
}