-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 970 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 970 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
32
33
34
35
36
37
38
{
"name": "docker-doctor-monorepo",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"check": "ultracite check",
"fix": "ultracite fix",
"clean": "turbo run clean && git clean -xdf node_modules",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "turbo run build && changeset publish",
"doctor": "react-doctor",
"docs:rules": "bun scripts/generate-rules-doc.ts",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"husky": "^9.1.7",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"react-doctor": "^0.9.11",
"turbo": "^2.10.9",
"typescript": "^7.0.2",
"ultracite": "7.10.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.14"
}