-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.23 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
{
"name": "ticker-journal",
"private": true,
"packageManager": "pnpm@10.31.0",
"scripts": {
"dev": "turbo run dev",
"dev:web": "pnpm --filter @ticker-journal/web dev",
"dev:mobile": "pnpm --filter @ticker-journal/mobile start",
"dev:ios": "pnpm --filter @ticker-journal/mobile exec expo start --ios",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:e2e": "pnpm --filter @ticker-journal/web test:e2e",
"ci": "pnpm check && pnpm typecheck && pnpm test",
"gen:types": "supabase gen types typescript --linked --schema public > packages/shared/src/database.ts.tmp && mv packages/shared/src/database.ts.tmp packages/shared/src/database.ts",
"check:db-types": "node scripts/check-db-types.mjs",
"format": "biome format --write .",
"format:check": "biome format .",
"lint:biome": "biome lint .",
"lint:biome:fix": "biome lint --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.5.7",
"husky": "^9.1.7",
"turbo": "^2.5.4",
"typescript": "~7.0.2"
}
}