-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.43 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.43 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "byungskerlog",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002 -H 0.0.0.0",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"postinstall": "prisma generate",
"tunnel": "ngrok http 3002 --domain=frederica-interlunar-faster.ngrok-free.dev"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.7",
"@giscus/react": "^3.1.0",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.19.3",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@stackframe/stack": "^2.8.108",
"@tanstack/react-query": "^5.90.12",
"@tiptap/extension-code-block-lowlight": "^3.14.0",
"@tiptap/extension-image": "^3.15.3",
"@tiptap/extension-link": "^3.14.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/pm": "^3.14.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/blob": "^2.6.1",
"ai": "^6.0.27",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"file-saver": "^2.0.5",
"framer-motion": "^12.23.26",
"gsap": "^3.14.2",
"html-to-image": "^1.11.13",
"jszip": "^3.10.1",
"lowlight": "^3.3.0",
"lru-cache": "^11.2.4",
"lucide-react": "^0.555.0",
"next": "^16.2.12",
"next-themes": "^0.4.6",
"parse-entities": "^4.0.2",
"prisma": "^6.19.3",
"react": "^19.2.8",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.8",
"react-hook-form": "^7.67.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"recharts": "^2.15.4",
"recharts-to-png": "^2.4.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tiptap-markdown": "^0.9.0",
"undici": "^6.28.0",
"yet-another-react-lightbox": "^3.28.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query-devtools": "^5.91.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9",
"eslint-config-next": "^16.2.12",
"jsdom": "^27.0.1",
"msw": "^2.12.7",
"prettier": "^3.7.4",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^3.2.4"
},
"overrides": {
"js-cookie": "3.0.8",
"linkify-it": "5.0.2",
"lodash": "4.18.1",
"markdown-it": "14.3.0",
"postcss": "8.5.23",
"sharp": "0.35.3"
}
}