-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "kit",
"private": true,
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"db:supabase": "pnpm -F db supabase",
"db:start": "pnpm -F db start",
"db:stop": "pnpm -F db stop",
"db:reset": "pnpm -F db reset",
"db:push": "pnpm -F db push",
"db:push-remote": "pnpm -F db push:remote",
"dev": "turbo watch dev --continue",
"dev:web": "turbo watch dev -F @repo/web...",
"dev:mobile": "turbo watch dev -F @repo/mobile...",
"dev:extension": "turbo watch dev -F @repo/extension...",
"dev:desktop": "turbo watch dev -F @repo/desktop...",
"lint": "oxlint --report-unused-disable-directives",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:fix": "oxfmt --write",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"bootstrap": "tsx scripts/bootstrap.ts"
},
"devDependencies": {
"dotenv-cli": "^11.0.0",
"oxfmt": "^0.58.0",
"oxlint": "^1.73.0",
"tsx": "^4.23.0",
"turbo": "^2.10.4",
"typescript": "catalog:"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"electron",
"electron-winstaller",
"esbuild",
"sharp",
"spawn-sync",
"supabase"
],
"overrides": {
"@expo/dom-webview": "56.0.5",
"lightningcss": "1.30.1"
},
"updateConfig": {
"ignoreDependencies": [
"typescript"
]
}
}
}