-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 912 Bytes
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
{
"name": "wiretext-monorepo",
"private": true,
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=@wiretext/app",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint && howells-workspace-check",
"lint:fix": "turbo run lint:fix && howells-workspace-fix",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"prepare": "howells-husky",
"dev:all": "turbo run dev --parallel",
"clean": "turbo clean",
"check:affected": "turbo run build lint typecheck test --affected"
},
"devDependencies": {
"@howells/husky": "^0.1.3",
"@howells/lint": "^1.1.0",
"@howells/typescript-config": "^0.1.6",
"turbo": "2.10.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,jsonc,css}": "howells-fix"
},
"engines": {
"node": ">=24.15.0"
},
"packageManager": "pnpm@11.11.0"
}