-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.47 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
{
"name": "reins-workspace",
"private": true,
"type": "module",
"scripts": {
"boundaries": "node --conditions=source scripts/check-boundaries.ts",
"language": "node --conditions=source scripts/check-runtime-language.ts",
"check": "turbo run boundaries language format:check lint typecheck build test test:e2e --continue=dependencies-successful --output-logs=errors-only --log-order=grouped --log-prefix=task",
"deployment": "pnpm exec turbo run build && node --conditions=source scripts/build-distribution.ts && node --conditions=source scripts/validate-release-package.ts && node --conditions=source scripts/check-packed-cli.ts",
"fix": "turbo run lint:fix format:write --continue=dependencies-successful --output-logs=full --log-order=grouped --log-prefix=task",
"format:check": "node --conditions=source scripts/run-root-owned-task.ts format:check",
"format:write": "node --conditions=source scripts/run-root-owned-task.ts format:write",
"lint": "node --conditions=source scripts/run-root-owned-task.ts lint",
"lint:fix": "node --conditions=source scripts/run-root-owned-task.ts lint:fix",
"typecheck": "tsc -p tsconfig.json --noEmit --pretty false"
},
"devDependencies": {
"@types/node": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"rolldown": "catalog:",
"turbo": "catalog:",
"typescript-7": "catalog:"
},
"engines": {
"node": "24"
},
"packageManager": "pnpm@11.22.0"
}