-
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.13 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 3.13 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": "scripticx",
"version": "1.0.0",
"private": true,
"scripts": {
"prepare:monaco": "node scripts/copy-monaco-assets.mjs",
"generate:secrets": "node scripts/generate-platform-secrets.mjs",
"supabase:auth-templates": "node scripts/publish-supabase-auth-templates.mjs",
"design:check": "node scripts/check-design-system.mjs",
"design:check:strict": "node scripts/check-design-system.mjs --strict",
"prebuild": "npm run prepare:monaco",
"dev": "npm run prepare:monaco && next dev",
"dev:turbo": "npm run check && npm run prepare:monaco && next dev --turbopack",
"dev:clean": "rm -rf .next && npm run dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"check": "npm run typecheck && npm run test:run"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@excalidraw/excalidraw": "^0.18.1",
"@monaco-editor/react": "^4.7.0",
"@supabase/ssr": "^0.9.0",
"@supabase/supabase-js": "^2.100.0",
"@tanstack/query-async-storage-persister": "^5.101.4",
"@tanstack/react-query": "^5.101.4",
"@tanstack/react-query-persist-client": "^5.101.4",
"@tiptap/core": "^3.30.0",
"@tiptap/extension-code-block-lowlight": "3.30.0",
"@tiptap/extension-image": "^3.30.0",
"@tiptap/extension-link": "^3.30.0",
"@tiptap/extension-placeholder": "^3.30.0",
"@tiptap/extension-table": "3.30.0",
"@tiptap/extension-task-item": "^3.30.0",
"@tiptap/extension-task-list": "^3.30.0",
"@tiptap/markdown": "^3.30.0",
"@tiptap/pm": "^3.30.0",
"@tiptap/react": "^3.30.0",
"@tiptap/starter-kit": "^3.30.0",
"@types/react-easy-crop": "^1.16.0",
"boneyard-js": "1.9.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cytoscape": "^3.34.0",
"date-fns": "^4.1.0",
"dompurify": "^3.4.12",
"html-to-image": "^1.11.13",
"js-yaml": "4.3.1",
"jspdf": "^4.2.1",
"lowlight": "^3.3.0",
"lucide-react": "^1.7.0",
"monaco-editor": "^0.56.0",
"next": "^16.3.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "19.2.4",
"react-day-picker": "^9.14.0",
"react-dom": "19.2.4",
"react-easy-crop": "^5.5.7",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.12.2",
"recharts": "^3.10.1",
"remark-gfm": "^4.0.1",
"shadcn": "^4.1.0",
"simple-icons": "^16.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tree-sitter-wasms": "0.1.13",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"web-tree-sitter": "0.24.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/cytoscape": "^3.21.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.3.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.7"
},
"overrides": {
"dompurify": "$dompurify",
"nanoid@3.3.3": "3.3.17",
"nanoid@4.0.2": "5.1.16",
"lodash-es": "4.18.0"
}
}