Kyoo/front/package.json
2022-11-02 22:57:31 +09:00

36 lines
752 B
JSON

{
"name": "kyoo",
"private": true,
"scripts": {
"dev": "yarn workspaces foreach -pi run dev",
"web": "yarn workspace web dev",
"mobile": "yarn workspace mobile start",
"build:web": "yarn workspace web build",
"lint": "eslint ."
},
"workspaces": [
"apps/*",
"packages/*"
],
"prettier": {
"useTabs": true,
"printWidth": 100,
"trailingComma": "all",
"plugins": [
"prettier-plugin-jsdoc"
],
"jsdocSingleLineComment": false,
"tsdoc": true
},
"devDependencies": {
"eslint": "8.19.0",
"eslint-config-next": "12.2.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.3.38",
"typescript": "4.7.4"
},
"packageManager": "yarn@3.2.4"
}