-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.04 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
{
"name": "acme",
"version": "0.0.0",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=24.0.0 <25",
"pnpm": ">=9.15.9"
},
"packageManager": "pnpm@10.29.3+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
"scripts": {
"build": "turbo run build",
"check": "turbo run check --continue -- --write --unsafe",
"check:dependencies": "pnpm dlx sherif@latest",
"check:dependencies:fix": "pnpm dlx sherif@latest --fix",
"clean": "turbo run clean && git clean -xdf .turbo node_modules",
"db:push": "turbo -F @acme/db push",
"db:studio": "turbo -F @acme/db studio",
"dev": "turbo run dev --continue --parallel",
"typecheck": "turbo run typecheck",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:status": "supabase status"
},
"devDependencies": {
"@biomejs/biome": "~2.4.7",
"@turbo/gen": "~2.8.17",
"supabase": "^2.79.0",
"turbo": "~2.8.17"
},
"pnpm": {
"overrides": {
"@tiptap/core": "3.20.0",
"@tiptap/pm": "3.20.0",
"@tiptap/react": "3.20.0",
"@tiptap/extensions": "3.20.0",
"@tiptap/extension-bold": "3.20.0",
"@tiptap/extension-code": "3.20.0",
"@tiptap/extension-italic": "3.20.0",
"@tiptap/extension-strike": "3.20.0",
"@tiptap/extension-underline": "3.20.0",
"@tiptap/extension-link": "3.20.0",
"@tiptap/extension-text": "3.20.0",
"@tiptap/extension-paragraph": "3.20.0",
"@tiptap/extension-horizontal-rule": "3.20.0",
"@tiptap/extension-bubble-menu": "3.20.0",
"@tiptap/extension-floating-menu": "3.20.0"
},
"peerDependencyRules": {
"allowedVersions": {
"zod": "^3.23.8 || ^4.0.0"
},
"ignoreMissing": [
"@better-auth/passkey",
"@daveyplate/better-auth-tanstack",
"@instantdb/react",
"@marsidev/react-turnstile",
"@triplit/client",
"@triplit/react"
]
}
}
}