-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.4 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "template",
"version": "0.0.0",
"private": true,
"description": "Monorepo template",
"repository": {
"type": "git",
"url": "https://github.com/stijnvanhulle/template.git"
},
"license": "MIT",
"author": "Stijn Van Hulle <[email protected]",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"packages/config/eslint-config/*",
"packages/config/biome-config/*",
"packages/config/tsup-config/*",
"packages/config/ts-config/*"
]
},
"scripts": {
"build": "turbo run build --filter=./packages/*",
"clean": "turbo run clean",
"graph": "npx nx graph ",
"install:csb": "corepack enable && pnpm install --frozen-lockfile",
"format": "bun biome format --write ./ && bun format:pack",
"format:pack": "npx sort-package-json package.json",
"lint": "bun biome lint .",
"lint:case": "npx case-police --fix",
"lint:ci": "bun biome lint .",
"lint:fix": "bun biome lint --apply-unsafe . && bun run lint:case",
"lint:turbo": "turbo run lint",
"version": "changeset version",
"release": "changeset publish",
"version:canary": "changeset version --snapshot canary",
"release:canary": "changeset publish --no-git-tag",
"start": "turbo run start --filter=./packages/*",
"test": "vitest run --config ./configs/vitest.config.ts --coverage",
"test:bun": "bun test --preload ./configs/setup.ts",
"test:vitest": "vitest run --config ./configs/vitest.config.ts",
"test:watch": "vitest --config ./configs/vitest.config.ts",
"typecheck": "turbo run typecheck --continue --filter='./packages/*'",
"upgrade": "npx taze -r -w --exclude pnpm",
"changeset": "changeset",
"//changeset:beta:enter": "changeset pre enter beta",
"//changeset:beta:exit": "changeset pre exit"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@stijnvanhulle/biome-config": "workspace:*",
"@stijnvanhulle/ts-config": "workspace:*",
"@types/node": "^20.12.5",
"@vitest/coverage-v8": "^1.4.0",
"@vitest/ui": "^1.4.0",
"bun-types": "^1.1.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"turbo": "^1.13.2",
"typescript": "^5.4.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=8.3.0"
}
}