-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 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
{
"name": "@oyster/root",
"private": true,
"workspaces": [
"apps/*",
"config/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"dev": "turbo run dev --cache-dir=.turbo",
"lint": "turbo run lint --cache-dir=.turbo",
"lint:fix": "turbo run lint:fix --cache-dir=.turbo",
"test": "turbo run test --cache-dir=.turbo",
"type-check": "turbo run type-check --cache-dir=.turbo",
"api:tunnel": "bun ./scripts/run-tunnel.ts",
"db:migrate": "bun --filter @oyster/db migrate",
"db:migrate:down": "bun --filter @oyster/db migrate:down",
"db:migration:create": "cd packages/db && bun migration:create",
"db:seed": "cd packages/db && bun seed",
"db:types": "bun --filter @oyster/db types",
"dx:down": "docker compose down",
"dx:nuke": "docker compose down --volumes --remove-orphans",
"dx:up": "docker compose up -d",
"env:setup": "cd packages/scripts && bun env:setup",
"prisma:setup": "bun --filter @oyster/scripts prisma:setup",
"prisma:studio": "bun --filter @oyster/db prisma:studio"
},
"devDependencies": {
"@types/bun": "^1.2.17",
"prettier": "^3.2.5",
"turbo": "latest",
"typescript": "^5.4.2"
},
"resolutions": {
"vite": "^6.1.0"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=22 <22.12"
},
"packageManager": "bun@1.2.17"
}