forked from colorstackorg/oyster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.35 KB
/
package.json
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
{
"private": true,
"workspaces": {
"packages": [
"apps/*",
"config/*",
"packages/*"
]
},
"scripts": {
"build": "turbo run build --cache-dir=.turbo",
"db:migrate": "yarn workspace @oyster/db migrate",
"db:migrate:down": "yarn workspace @oyster/db migrate:down",
"db:migration:create": "yarn workspace @oyster/db migration:create",
"db:seed": "yarn workspace @oyster/db seed",
"db:types": "yarn workspace @oyster/db types",
"dev": "turbo run dev --cache-dir=.turbo",
"dev:apps": "yarn dev --filter=./apps/*",
"dx:down": "docker compose down",
"dx:nuke": "docker compose down --volumes --remove-orphans",
"dx:up": "docker compose up -d",
"env:setup": "yarn workspace @oyster/scripts env:setup",
"lint": "turbo run lint --cache-dir=.turbo",
"lint:fix": "turbo run lint:fix --cache-dir=.turbo",
"prisma:setup": "yarn workspace @oyster/scripts prisma:setup",
"prisma:studio": "yarn workspace @oyster/db prisma:studio",
"start": "turbo run start --cache-dir=.turbo",
"test": "turbo run test --cache-dir=.turbo",
"type-check": "turbo run type-check --cache-dir=.turbo"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "latest",
"typescript": "^5.4.2"
},
"engines": {
"npm": ">=7.0.0",
"node": "^20.0.0"
},
"packageManager": "[email protected]"
}