-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.39 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
{
"name": "@repo/root",
"private": true,
"scripts": {
"build": "turbo build",
"build:p": "turbo build --filter './packages/*'",
"build:blog": "turbo build --filter './apps/blog'",
"dev": "turbo dev --filter './apps/blog'",
"dev:g": "turbo dev --filter './apps/grasshopper'",
"storybook": "turbo storybook",
"lint": "turbo lint",
"dev:xion": "turbo dev:xion",
"test": "turbo run test",
"ci:test": "turbo run ci:test",
"ci:knip": "pnpm dlx knip --no-exit-code --workspace apps/blog",
"lint:biome": "npx @biomejs/biome lint .",
"check:biome": "npx @biomejs/biome check --config-path=./biome-ci.json --write .",
"format:biome": "npx @biomejs/biome format --write .",
"clean:all": "rm -rf node_modules && rm -rf apps/*/node_modules && rm -rf packages/*/node_modules && pnpm store prune && pnpm install",
"bump-deps": "pnpm dlx npm-check-updates && pnpm install",
"gen:p": "pnpm dlx tsx .cli/package.cts",
"test:type": "turbo test:type",
"generate-types": "turbo generate-types"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@repo/typescript-config": "workspace:*",
"lefthook": "^1.10.10",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}