-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.67 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
{
"name": "seen-workspace",
"private": true,
"packageManager": "bun@1.3.10",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"dev:mobile": "bun --cwd apps/mobile dev",
"dev:api": "bun --cwd apps/api dev",
"build": "turbo build",
"typecheck": "turbo typecheck",
"lint": "turbo lint",
"format": "turbo run format --filter=./apps/* --filter=./packages/* && bun run format:root",
"format:check": "turbo run format:check --filter=./apps/* --filter=./packages/* && bun run format:check:root",
"format:root": "prettier --write AGENTS.md README.md package.json turbo.json tsconfig.base.json .prettierrc.json .github/workflows/*.yml",
"format:check:root": "prettier --check AGENTS.md README.md package.json turbo.json tsconfig.base.json .prettierrc.json .github/workflows/*.yml",
"test": "turbo test",
"ci": "turbo run lint typecheck format:check --filter=./apps/* --filter=./packages/* && bun run format:check:root",
"ci:full": "bun run db:generate && bun run format && bun run ci",
"ci:mobile": "turbo run lint typecheck format:check --filter=seen... && bun run format:check:root",
"ci:api": "turbo run lint typecheck format:check --filter=@seen/api... && bun run format:check:root",
"db:generate": "bun --cwd packages/db db:generate",
"db:migrate": "bun --cwd packages/db db:migrate",
"db:studio": "bun --cwd packages/db db:studio",
"db:push": "bun --cwd packages/db db:push"
},
"devDependencies": {
"@eslint/js": "^9",
"eslint": "^9",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"turbo": "^2.6.1",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.1"
}
}