-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.92 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
{
"name": "baseblocks",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"license": "FSL-1.1-MIT",
"scripts": {
"build": "turbo run build",
"dev": "vercel env run -e development -- turbo run dev",
"lint": "biome lint .",
"seo:audit": "NEXT_PUBLIC_SITE_URL=http://localhost:3002 NEXT_PUBLIC_ROOT_DOMAIN=localhost BASEBLOCKS_SEO_AUDIT=1 VERCEL_ENV=production bun run build && NEXT_PUBLIC_SITE_URL=http://localhost:3002 NEXT_PUBLIC_ROOT_DOMAIN=localhost BASEBLOCKS_SEO_AUDIT=1 VERCEL_ENV=production bun scripts/audit-seo.ts",
"format": "biome format --write .",
"check-types": "turbo run check-types",
"test": "bun test",
"clean": "rm -rf .turbo apps/*/.next apps/*/.source packages/*/.turbo tooling/*/.turbo"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"lighthouse": "13.0.1",
"turbo": "^2.10.4",
"typescript": "7.0.2",
"vercel": "58.5.1"
},
"resolutions": {
"@convex-dev/better-auth": "0.12.5",
"@radix-ui/react-presence": "1.1.6",
"better-auth": "1.6.23",
"defu": "6.1.7",
"picomatch": "4.0.5",
"postcss": "8.5.23",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"convex": "^1.42.1"
},
"engines": {
"node": ">=20.9.0"
},
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"overrides": {
"convex": "1.43.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"@tiptap/core": "3.29.2",
"@tiptap/extension-blockquote": "3.29.2",
"@tiptap/extension-bold": "3.29.2",
"@tiptap/extension-bubble-menu": "3.29.2",
"@tiptap/extension-bullet-list": "3.29.2",
"@tiptap/extension-code": "3.29.2",
"@tiptap/extension-code-block": "3.29.2",
"@tiptap/extension-document": "3.29.2",
"@tiptap/extension-dropcursor": "3.29.2",
"@tiptap/extension-floating-menu": "3.29.2",
"@tiptap/extension-gapcursor": "3.29.2",
"@tiptap/extension-hard-break": "3.29.2",
"@tiptap/extension-heading": "3.29.2",
"@tiptap/extension-horizontal-rule": "3.29.2",
"@tiptap/extension-image": "3.29.2",
"@tiptap/extension-italic": "3.29.2",
"@tiptap/extension-link": "3.29.2",
"@tiptap/extension-list": "3.29.2",
"@tiptap/extension-list-item": "3.29.2",
"@tiptap/extension-list-keymap": "3.29.2",
"@tiptap/extension-ordered-list": "3.29.2",
"@tiptap/extension-paragraph": "3.29.2",
"@tiptap/extension-placeholder": "3.29.2",
"@tiptap/extension-strike": "3.29.2",
"@tiptap/extension-table": "3.29.2",
"@tiptap/extension-task-item": "3.29.2",
"@tiptap/extension-task-list": "3.29.2",
"@tiptap/extension-text": "3.29.2",
"@tiptap/extension-text-align": "3.29.2",
"@tiptap/extension-underline": "3.29.2",
"@tiptap/extension-unique-id": "3.29.2",
"@tiptap/extensions": "3.29.2",
"@tiptap/pm": "3.29.2",
"@tiptap/react": "3.29.2",
"@tiptap/starter-kit": "3.29.2",
"@tiptap/suggestion": "3.29.2"
}
}