-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.91 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
{
"name": "whisp",
"private": true,
"engines": {
"node": ">=22.19.0"
},
"packageManager": "bun@1.2.23",
"scripts": {
"build": "turbo run build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"auth:generate": "bun -F @acme/auth generate",
"db:generate": "bun -F @acme/db generate",
"db:push": "turbo -F @acme/db push",
"db:studio": "turbo -F @acme/db studio",
"dev": "turbo dev",
"dev:all": "turbo watch dev --continue",
"dev:next": "turbo watch dev -F @acme/nextjs...",
"format": "oxfmt --check",
"format:fix": "oxfmt --write",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:ws": "bun x sherif@latest",
"postinstall": "bun lint:ws",
"typecheck": "turbo run typecheck",
"check": "turbo run typecheck && oxlint --fix && oxfmt --write",
"ui-add": "turbo run ui-add",
"android": "expo run:android",
"ios": "expo run:ios"
},
"devDependencies": {
"@turbo/gen": "^2.8.11",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"turbo": "^2.8.11",
"typescript": "catalog:"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"tooling/*"
],
"catalog": {
"@tanstack/react-query": "^5.87.1",
"@trpc/client": "^11.5.1",
"@trpc/server": "^11.5.1",
"@trpc/tanstack-react-query": "^11.5.1",
"uploadthing": "^7.7.4",
"dotenv-cli": "^10.0.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.9.2",
"zod": "^4.1.5"
},
"catalogs": {
"react19": {
"@types/react": "~19.1.10",
"@types/react-dom": "~19.1.9",
"react": "19.1.0",
"react-dom": "19.1.0"
}
}
},
"overrides": {
"@types/minimatch": "5.1.2"
},
"trustedDependencies": [
"core-js-pure"
],
"patchedDependencies": {
"react-native-vision-camera@4.7.3": "patches/react-native-vision-camera@4.7.3.patch"
}
}