mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-02-02 18:21:37 +08:00
21 lines
439 B
JSON
Executable File
21 lines
439 B
JSON
Executable File
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"apps/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"clean": "turbo run clean",
|
|
"dev": "turbo run dev --no-cache --parallel --continue",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"tsc": "turbo run tsc"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^2.7.1",
|
|
"turbo": "latest"
|
|
}
|
|
}
|