Kyoo/front/package.json
2024-05-17 00:36:11 +02:00

27 lines
687 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 .",
"format": "biome format .",
"format:fix": "biome format . --write"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@biomejs/biome": "1.7.3",
"typescript": "5.3.3"
},
"packageManager": "yarn@3.2.4"
}