47 lines
932 B
JSON
47 lines
932 B
JSON
|
{
|
||
|
"name": "yasd",
|
||
|
"version": "1.0.0",
|
||
|
"private": true,
|
||
|
"workspaces": [
|
||
|
"apps/*",
|
||
|
"packages/*"
|
||
|
],
|
||
|
"description": "Yet another stream deck.",
|
||
|
"scripts": {
|
||
|
"build": "turbo run build --force",
|
||
|
"dev": "turbo run dev --parallel",
|
||
|
"dev:web": "turbo run dev --scope=web",
|
||
|
"dev:server": "turbo run dev --scope=server",
|
||
|
"lint": "turbo run lint",
|
||
|
"format": "prettier --write \"**/*.{ts,tsx,md}\""
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://git.thomaspcole.com/thomascole/yasd.git"
|
||
|
},
|
||
|
"author": "Thomas Cole",
|
||
|
"license": "MIT",
|
||
|
"devDependencies": {
|
||
|
"turbo": "^1.2.1",
|
||
|
"prettier": "^2.5.1"
|
||
|
},
|
||
|
"turbo": {
|
||
|
"pipeline": {
|
||
|
"build": {
|
||
|
"dependsOn": [
|
||
|
"^build"
|
||
|
],
|
||
|
"outputs": [
|
||
|
"dist/**"
|
||
|
]
|
||
|
},
|
||
|
"lint": {
|
||
|
"outputs": []
|
||
|
},
|
||
|
"dev": {
|
||
|
"cache": false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|