-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "ai-prompts-directory",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm-run-all --parallel dev:frontend dev:backend",
"dev:frontend": "vite",
"dev:backend": "convex dev --tail-logs",
"build": "tsc && vite build --config vite.config.ts",
"tsc": "tsc",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@clerk/clerk-react": "^5.22.8",
"@codesandbox/sandpack-react": "^2.19.10",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@liveblocks/client": "^2.16.2",
"@liveblocks/react": "^2.16.2",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@tabler/icons-react": "^3.29.0",
"@tanstack/react-query": "^5.28.4",
"@tanstack/react-router": "^1.19.4",
"@tanstack/router-devtools": "^1.19.4",
"@tanstack/router-vite-plugin": "^1.19.4",
"@tiptap/core": "^2.11.5",
"@tiptap/extension-code-block-lowlight": "^2.11.3",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@types/react-helmet": "^6.1.11",
"@types/react-syntax-highlighter": "^15.5.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"convex": "^1.18.2",
"framer-motion": "^11.0.8",
"lowlight": "^3.3.0",
"lucide-react": "^0.344.0",
"motion": "^12.0.6",
"puppeteer": "^24.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-helmet-async": "^2.0.5",
"react-syntax-highlighter": "^15.6.1",
"tailwind-merge": "^3.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vitejs/plugin-react": "latest",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"rollup": "^4.32.1",
"tailwindcss": "^3.4.1",
"typescript": "latest",
"typescript-eslint": "^8.23.0",
"vite": "latest"
},
"engines": {
"node": ">=18.0.0"
}
}