-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.44 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
{
"name": "disworse",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "turbo build",
"build:web": "turbo build --filter web",
"build:api": "turbo build --filter api",
"dev": "pnpm run compose:up && turbo dev",
"dev:web": "turbo dev --filter web",
"dev:api": "pnpm run compose:up && turbo dev --filter api",
"start": "pnpm run compose:up && turbo build && turbo start --filter api",
"start:web": "pnpm run build:web && turbo start --filter web",
"start:api": "pnpm run compose:up && pnpm run build:api && turbo start --filter api",
"compose:up": "docker compose -f docker-compose.dev.yml up -d --build",
"compose:down": "docker compose down -v",
"typecheck": "turbo typecheck",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:fix:unsafe": "biome check . --write --unsafe",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"lint-staged": {
"**/*": ["biome check . --write"]
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}