-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.17 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
{
"name": "drawbase",
"version": "0.1.0",
"private": true,
"description": "Minimal, Excalidraw-first tool for DSA, HLD, LLD, and system design notes — organize diagram sheets into per-topic workspaces, persisted to your own Postgres.",
"license": "MIT",
"author": "Shishir Chaurasiya",
"repository": {
"type": "git",
"url": "git+https://github.com/Shishir435/drawbase.git"
},
"scripts": {
"build": "next build",
"db:diff": "supabase db diff --local",
"db:lint": "supabase db lint --local --level error",
"db:migration:new": "supabase migration new",
"db:migrations": "supabase migration list",
"db:push": "supabase db push",
"db:reset": "supabase db reset",
"db:start": "supabase start",
"db:stop": "supabase stop",
"dev": "next dev",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"lint": "oxlint --nextjs-plugin --react-plugin --jsx-a11y-plugin --import-plugin src next.config.ts postcss.config.mjs",
"lint:all": "pnpm lint && pnpm typecheck",
"lint:fix": "pnpm lint --fix",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clerk/nextjs": "^7.5.15",
"@excalidraw/excalidraw": "^0.18.1",
"@radix-ui/react-alert-dialog": "^1.1.19",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slot": "^1.3.0",
"@supabase/supabase-js": "^2.110.2",
"@tanstack/react-query": "^5.101.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.24.0",
"next": "16.2.10",
"react": "19.2.4",
"react-dom": "19.2.4",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"fake-indexeddb": "^6.2.5",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"supabase": "^2.109.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.10"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}