-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 947 Bytes
/
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
{
"name": "knzklive2",
"version": "0.1.0",
"repository": "https://github.com/nzws/knzklive2",
"license": "AGPL-3.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": {
"packages": [
"./apps/*",
"./packages/*"
]
},
"scripts": {
"lint": "prettier --check --cache .",
"format": "prettier --write --cache .",
"dev-all": "docker compose up -d redis && yarn dev:migrate && yarn workspaces foreach --worktree --verbose --parallel -j unlimited --interlaced run dev",
"dev": "docker compose up --build",
"dev:migrate": "yarn workspace server prisma migrate dev",
"dev:sql": "yarn workspace server prisma studio",
"turbo:build": "turbo run build",
"turbo:test": "turbo run test",
"turbo:lint": "turbo run lint"
},
"devDependencies": {
"@knzk/prettier-config": "1.0.0",
"prettier": "3.3.1",
"turbo": "1.13.4"
},
"prettier": "@knzk/prettier-config"
}