-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.59 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
{
"name": "hackjs",
"private": true,
"license": "MIT",
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo watch dev",
"dev:web": "bun --filter web dev",
"dev:mobile": "bun --filter mobile dev",
"build": "turbo build",
"build:web": "bun --filter web build",
"build:mobile": "bun --filter mobile build",
"start": "turbo start --filter=mobile",
"start:web": "bun --filter web start",
"start:mobile": "bun --filter mobile start",
"lint": "turbo lint",
"lint:web": "bun --filter web lint",
"lint:mobile": "bun --filter mobile lint",
"typecheck": "turbo typecheck",
"typecheck:web": "bun --filter web typecheck",
"typecheck:mobile": "bun --filter mobile typecheck",
"clean": "turbo clean",
"clean:web": "bun --filter web clean",
"clean:mobile": "bun --filter mobile clean",
"android": "turbo android --filter=mobile",
"android:mobile": "bun --filter mobile android",
"ios": "turbo ios --filter=mobile",
"ios:mobile": "bun --filter mobile ios",
"get-ip:mobile": "bun --filter mobile get-ip",
"doctor:mobile": "bun --filter mobile doctor",
"install-apk:mobile": "bun --filter mobile install-apk",
"build:install-apk:mobile": "bun --filter mobile build:install-apk",
"db:generate": "bun --filter @repo/db db:generate",
"db:push": "bun --filter @repo/db db:push",
"db:studio": "bun --filter @repo/db db:studio",
"db:migrate": "bun --filter @repo/db db:migrate",
"db:seed": "bun --filter @repo/db db:seed",
"db:generate-auth": "bun --filter @repo/auth db:generate-auth",
"ui:mobile": "cd packages/ui/src/mobile && bunx @react-native-reusables/cli@latest add",
"ui:web": "bunx shadcn@latest add --cwd packages/ui/src/web",
"postinstall": "lefthook install",
"reinstall-packages": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + || true; rm -f bun.lock; bun install"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/bun": "latest",
"@types/node": "^20",
"@types/react": "~19.1.10",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.9",
"lefthook": "^2.1.1",
"turbo": "2.8.12",
"typescript": "^5.0.0"
},
"dependencies": {},
"overrides": {
"expo": "~54.0.33",
"expo-constants": "~18.0.12",
"expo-font": "~14.0.11",
"expo-linking": "~8.0.10",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"@types/react": "~19.1.10",
"@sinclair/typebox": "^0.34.15"
},
"trustedDependencies": [
"esbuild",
"lefthook",
"msw"
]
}