-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.39 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": "packrat-monorepo",
"version": "2.0.16",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"configure:deps": "bun run .github/scripts/configure-deps.ts",
"clean": "bun run .github/scripts/clean.ts",
"env": "bun run .github/scripts/env.ts",
"lefthook": "lefthook install",
"preinstall": "bun run configure:deps",
"postinstall": "bun run lefthook && bun run env",
"check:deps": "manypkg check",
"fix:deps": "bun manypkg fix",
"check-types": "tsc --noEmit",
"check-types-watch": "tsc --noEmit --watch",
"format": "biome format --write",
"lint": "biome check --write",
"lint-unsafe": "biome check --write --unsafe",
"check": "biome check --no-errors-on-unmatched",
"expo": "cd apps/expo && bun start",
"android": "cd apps/expo && bun android",
"ios": "cd apps/expo && bun ios",
"api": "bun run --cwd packages/api dev",
"test:api:unit": "vitest run --config packages/api/vitest.unit.config.ts",
"test:expo": "vitest run --config apps/expo/vitest.config.ts",
"bump": "bun .github/scripts/bump.ts"
},
"devDependencies": {
"@biomejs/biome": "2.0.4",
"@manypkg/cli": "^0.24.0",
"@types/bun": "^1.2.17",
"@types/fs-extra": "^11.0.4",
"@types/glob": "^9.0.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"lefthook": "^1.11.14"
},
"trustedDependencies": [
"@sentry/cli"
]
}