mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-09-29 15:30:53 -04:00
46 lines
1014 B
JSON
46 lines
1014 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.30.0",
|
|
"eslint-config-next": "13.0.5",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-header": "^3.1.1",
|
|
"prettier": "^2.8.0",
|
|
"prettier-plugin-jsdoc": "^0.4.2",
|
|
"typescript": "4.9.3"
|
|
},
|
|
"resolutions": {
|
|
"metro": "^0.73.1",
|
|
"metro-resolver": "^0.73.1"
|
|
},
|
|
"packageManager": "yarn@3.2.4"
|
|
}
|