Kyoo/front/package.json

25 lines
718 B
JSON

{
"name": "kyoo",
"private": true,
"scripts": {
"dev": "yarn workspaces foreach -pi run dev",
"web": "yarn workspace web dev",
"mobile": "yarn workspace mobile dev",
"build:web": "yarn workspace web build",
"build:mobile": "yarn workspace mobile build",
"build:mobile:apk": "yarn workspace mobile build:apk",
"build:mobile:dev": "yarn workspace mobile build:dev",
"update": "yarn workspace mobile update",
"lint": "biome lint .",
"lint:fix": "biome lint . --write",
"format": "biome format .",
"format:fix": "biome format . --write"
},
"workspaces": ["apps/*", "packages/*"],
"devDependencies": {
"@biomejs/biome": "1.8.3",
"typescript": "5.5.4"
},
"packageManager": "yarn@3.2.4"
}