-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.91 KB
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
{
"name": "@stijnvanhulle/template",
"version": "0.0.0",
"private": true,
"description": "Modern TypeScript monorepo template with pnpm, Turborepo, oxlint, oxfmt, tsdown, Vitest and Changesets",
"repository": {
"type": "git",
"url": "https://github.com/stijnvanhulle/template.git"
},
"license": "MIT",
"author": "Stijn Van Hulle <stijn@stijnvanhulle.be>",
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"internals/*"
]
},
"scripts": {
"build": "turbo run build --filter=./packages/* --filter=./internals/*",
"changeset": "changeset",
"clean": "turbo run clean",
"format": "oxfmt -c oxfmt.config.ts packages internals configs",
"graph": "npx nx graph ",
"lint": "oxlint -c oxlint.config.ts ./packages",
"lint:fix": "oxlint -c oxlint.config.ts --fix ./packages",
"release": "changeset publish",
"start": "turbo run start --filter=./packages/* --filter=./internals/*",
"test": "vitest run --config ./configs/vitest.config.ts",
"test:bench": "NODE_OPTIONS='--max_old_space_size=4096' vitest bench --config ./configs/vitest.bench.config.ts",
"test:watch": "vitest --config ./configs/vitest.config.ts",
"typecheck": "turbo run typecheck --continue --filter='./packages/*' --filter='./internals/*'",
"upgrade": "npx taze -r -w --exclude pnpm --maturity-period 3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"bun-types": "^1.3.14",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"taze": "^19.14.1",
"ts-node": "^10.9.2",
"tsdown": "catalog:",
"turbo": "^2.10.5",
"typescript": "catalog:",
"vitest": "catalog:"
},
"packageManager": "pnpm@11.5.0",
"engines": {
"node": ">=22",
"pnpm": ">=11.0.0"
},
"namespace": "@stijnvanhulle"
}