mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
42 lines
940 B
JSON
42 lines
940 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:dev": "yarn workspace mobile build:dev",
|
|
"update": "yarn workspace mobile update",
|
|
"lint": "eslint ."
|
|
},
|
|
"eslintIgnore": [
|
|
"next-env.d.ts"
|
|
],
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*"
|
|
],
|
|
"prettier": {
|
|
"useTabs": true,
|
|
"printWidth": 100,
|
|
"trailingComma": "all",
|
|
"plugins": [
|
|
"prettier-plugin-jsdoc"
|
|
],
|
|
"jsdocSingleLineComment": false,
|
|
"tsdoc": true
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "8.36.0",
|
|
"eslint-config-next": "13.2.4",
|
|
"eslint-config-prettier": "^8.7.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"prettier": "^2.8.4",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"typescript": "4.9.5"
|
|
},
|
|
"packageManager": "yarn@3.2.4"
|
|
}
|