-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 2.57 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
{
"name": "531",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"scripts": {
"typecheck": "pnpm -r --parallel typecheck",
"dev:mobile": "pnpm --filter @fivethreeone/mobile start",
"dev:web": "pnpm --filter @fivethreeone/web dev",
"build:web": "pnpm --filter @fivethreeone/web build",
"build:apk": "pnpm --filter @fivethreeone/mobile exec eas build --platform android --profile preview --local --non-interactive --output ../web/public/531-preview.apk",
"build:dev": "pnpm --filter @fivethreeone/mobile build:dev",
"build:prod": "pnpm --filter @fivethreeone/mobile build:prod",
"preview:web": "pnpm --filter @fivethreeone/web preview",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "pnpm -r --parallel test",
"expo-doctor": "pnpm --filter @fivethreeone/mobile exec expo-doctor",
"bundle-check": "pnpm --filter @fivethreeone/mobile exec expo export --platform ios --output-dir /tmp/expo-bundle-check --dump-sourcemap=false --dump-assetmap=false",
"find-unused": "bash scripts/find-unused-primitives.sh",
"check-boundaries": "bash scripts/check-boundaries.sh",
"check-line-heights": "bash scripts/check-line-heights.sh",
"check-temp-markers": "bash scripts/check-temp-markers.sh",
"check-no-em-dash": "bash scripts/check-no-em-dash.sh",
"draft-release-notes": "bash scripts/draft-release-notes.sh",
"ci": "pnpm typecheck && pnpm lint && pnpm check-boundaries && pnpm check-line-heights && pnpm check-temp-markers && pnpm check-no-em-dash && pnpm test",
"verify": "pnpm run ci && pnpm bundle-check && pnpm build:web",
"release-ota": "pnpm --filter @fivethreeone/mobile exec eas update --branch main --platform android --environment production --non-interactive --message \"$(git log -1 --pretty=%s)\"",
"release:android:preview": "pnpm --filter @fivethreeone/mobile exec eas build --profile preview --platform android",
"release:android:production": "pnpm --filter @fivethreeone/mobile exec eas build --profile production --platform android",
"release:android:submit": "pnpm --filter @fivethreeone/mobile exec eas submit --platform android --latest",
"release:android:status": "pnpm --filter @fivethreeone/mobile exec eas build:list --platform android --limit 5",
"release:android:credentials": "pnpm --filter @fivethreeone/mobile exec eas credentials --platform android"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4"
}
}