You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
439 B
21 lines
439 B
2 years ago
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|