-
-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
executable file
·50 lines (50 loc) · 2.2 KB
/
package.json
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
{
"name": "t4-app-monorepo",
"private": true,
"license": "MIT",
"version": "3.0.0",
"scripts": {
"dev": "run-p api web",
"ios": "cd apps/expo && bun ios",
"android": "cd apps/expo && bun android",
"web": "cd apps/next && bun dev",
"api": "cd packages/api && bun dev",
"generate": "cd packages/api && bun generate",
"migrate:local": "cd packages/api && bun migrate:local",
"seed:local": "cd packages/api && bun seed:local",
"migrate": "cd packages/api && bun migrate",
"seed": "cd packages/api && bun seed",
"native": "cd apps/expo && bun dev",
"studio": "cd packages/api && bun studio",
"native:prod": "cd apps/expo && bun dev:prod",
"build": "cd packages/ui && tamagui-build",
"build:web": "cd apps/next && bun run build",
"build:ios": "cd apps/expo && bun build:ios",
"build:android": "cd apps/expo && bun build:android",
"build:ios:preview": "cd apps/expo && bun build:ios:preview",
"build:android:preview": "cd apps/expo && bun build:android:preview",
"submit:android": "cd apps/expo && eas submit --platform android --path ./app-release.aab",
"check-deps": "check-dependency-version-consistency .",
"check-types": "tsc --noEmit",
"format": "bun x @biomejs/biome format --write ./packages ./apps",
"lint": "bun x @biomejs/biome lint ./packages ./apps",
"fix": "bun x @biomejs/biome check --apply-unsafe ./packages ./apps",
"deps:fix": "manypkg fix",
"deps:update": "bun x npm-check-updates -ui -ws",
"postinstall": "bun run build && bun ./.github/scripts/env.ts && bun check-deps && bun format",
"clean": "git clean -xdf node_modules && rm -f bun.lockb && rm -rf ./apps/next/.next && rm -rf ./apps/next/.tamagui && rm -rf ./apps/next/node_modules && rm -rf ./packages/ui/dist"
},
"workspaces": ["apps/*", "packages/*"],
"dependencies": {
"@babel/runtime": "^7.23.2",
"@biomejs/biome": "1.3.3",
"@manypkg/cli": "^0.21.0",
"@nderscore/tamagui-typescript-plugin": "^0.6.0",
"@supabase/supabase-js": "^2.38.4",
"check-dependency-version-consistency": "^4.1.0",
"npm-run-all": "^4.1.5",
"react-native-url-polyfill": "^2.0.0",
"typescript": "^5.2.2",
"workerd": "1.20231218.0"
}
}