mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-09-24 19:38:31 -04:00
39 lines
923 B
JSON
39 lines
923 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": "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.54.0",
|
|
"eslint-config-next": "14.0.3",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"prettier": "^3.1.0",
|
|
"typescript": "5.3.2"
|
|
},
|
|
"packageManager": "yarn@3.2.4"
|
|
}
|