-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.33 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
42
43
44
45
{
"name": "init",
"private": true,
"scripts": {
"build": "turbo build",
"check": "turbo check",
"clean": "turbo clean",
"clean:workspace": "git clean -xdf .cache .turbo dist node_modules",
"deps:check": "taze -rl",
"deps:list": "syncpack list",
"deps:mismatched": "syncpack list-mismatches",
"deps:mismatched:fix": "syncpack fix-mismatches",
"deps:update": "taze -rlw",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=web",
"docker:down": "docker compose down",
"docker:up": "docker compose up -d",
"format": "turbo format",
"generate": "turbo generate",
"lint": "turbo lint",
"lint:repo": "sherif --fix",
"sort:package-json": "sort-package-json '**/package.json' '!**/node_modules/**'",
"typecheck": "turbo typecheck --continue",
"workspace:add": "tsx scripts/add-workspace.ts",
"workspace:remove": "tsx scripts/remove-workspace.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@clack/prompts": "^0.9.0",
"@turbo/gen": "^2.3.3",
"dotenv": "^16.4.7",
"sherif": "^1.1.1",
"sort-package-json": "^2.12.0",
"syncpack": "^13.0.0",
"taze": "^0.18.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "catalog:"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
}
}