{ "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": "eslint .", "format": "prettier -c .", "format:fix": "prettier -w ." }, "eslintIgnore": [ "next-env.d.ts" ], "workspaces": [ "apps/*", "packages/*" ], "prettier": { "useTabs": true, "printWidth": 100, "trailingComma": "all" }, "devDependencies": { "eslint": "8.56.0", "eslint-config-next": "14.1.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-header": "^3.1.1", "prettier": "^3.2.4", "typescript": "5.3.3" }, "packageManager": "yarn@3.2.4" }