-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1007 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
{
"name": "postcribe",
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.3",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.2.13",
"private": true,
"scripts": {
"build:prod": "turbo run build:prod",
"build:dev": "turbo run build:dev",
"clean:build": "find . -name 'dist' -type d -exec rm -rf {} + 2>/dev/null || true && find . -name '.turbo' -type d -exec rm -rf {} + 2>/dev/null || true && find . -name '.next' -type d -exec rm -rf {} + 2>/dev/null || true",
"clean:modules": "find . -name 'node_modules' -type d -exec rm -rf {} + 2>/dev/null || true",
"clean:all": "bun run clean:build && bun run clean:modules",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"workspaces": [
"apps/*",
"packages/*"
]
}