-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.5 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.5 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"catalog": {
"@better-auth/expo": "1.5.4",
"@supabase/supabase-js": "2.99.0",
"@t3-oss/env-core": "0.13.10",
"@t3-oss/env-nextjs": "0.13.10",
"@tailwindcss/postcss": "4.1.18",
"@tanstack/react-query": "5.90.21",
"@trpc/client": "11.12.0",
"@trpc/server": "11.12.0",
"@trpc/tanstack-react-query": "11.12.0",
"@types/bun": "1.3.10",
"@types/react": "~19.2.14",
"@types/react-dom": "19.2.3",
"better-auth": "1.5.4",
"date-fns": "4.1.0",
"drizzle-orm": "0.45.1",
"drizzle-zod": "0.8.3",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"stripe": "20.4.1",
"superjson": "2.2.6",
"tailwindcss": "4.2.1",
"typescript": "5.9.3",
"zod": "4.3.6",
"zustand": "5.0.11"
},
"commitlint": {
"extends": [
"@seawatts/commitlint-config"
]
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "20.4.3",
"@seawatts/commitlint-config": "workspace:*",
"@testing-library/react": "16.3.2",
"@types/bun": "1.3.10",
"@vercel/config": "0.0.38",
"checkly": "7.5.4",
"knip": "5.86.0",
"lefthook": "2.1.3",
"turbo": "^2.8.15",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"engines": {
"node": ">=20.12.0"
},
"name": "@seawatts/root",
"overrides": {
"@types/vscode": "1.96.0",
"lightningcss": "1.30.1"
},
"packageManager": "bun@1.2.23",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules .turbo",
"clean:ws": "turbo run clean",
"clone-project": "bun run scripts/clone-project.ts",
"db:gen-migration": "turbo -F @seawatts/db gen-migration",
"db:migrate": "turbo -F @seawatts/db migrate",
"db:push": "turbo -F @seawatts/db push",
"db:seed": "turbo -F @seawatts/db seed",
"db:studio": "turbo -F @seawatts/db studio",
"dev": "turbo watch dev dev:extension dev:webview",
"dev:next": "turbo watch dev -F @seawatts/web-app...",
"dev:vscode": "turbo watch dev dev:extension dev:webview -F seawatts-vscode... -F @seawatts/web-app...",
"docs": "turbo run dev --filter=@seawatts/docs...",
"format": "biome check && bun knip",
"format:ci": "biome ci && bun knip",
"format:fix": "biome check --write && bun knip --fix",
"knip": "knip --include dependencies --cache",
"lint:ws": "bunx sherif@latest",
"postinstall": "bun lint:ws",
"release": "bun scripts/release/index.ts",
"release:ci": "bun scripts/release/index.ts --ci",
"release:dry-run": "bun scripts/release/index.ts --dry-run",
"scripts": "bun run scripts/run.ts",
"test": "bun test",
"test:integ": "turbo run test --filter=@seawatts/integ-test",
"test:integ:ci": "turbo run test:ci --filter=@seawatts/integ-test",
"test:integ:watch": "turbo run test:watch --filter=@seawatts/integ-test",
"typecheck": "turbo run typecheck",
"typecheck:ci": "turbo run build --filter @seawatts/stripe && turbo run typecheck",
"ui-add": "turbo run ui-add",
"with-env": "infisical run --"
},
"trustedDependencies": [
"@biomejs/biome",
"@clerk/shared",
"@scarf/scarf",
"@sentry/cli",
"@tailwindcss/oxide",
"@vercel/speed-insights",
"browser-tabs-lock",
"bufferutil",
"bun",
"core-js",
"electron",
"esbuild",
"keytar",
"lefthook",
"puppeteer",
"sharp",
"supabase",
"yarn"
],
"workspaces": {
"packages": [
"packages/*",
"apps/*",
"tooling/*",
"docs",
"scripts"
]
}
}