Kyoo/front/package.json
2023-12-20 04:21:27 +01:00

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"
}