27 lines
778 B
JSON
27 lines
778 B
JSON
{
|
|
"name": "connect-force",
|
|
"private": true,
|
|
"files": [],
|
|
"workspaces": {
|
|
"packages": [
|
|
"./packages/*"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"rebuild": "npm run --workspaces rebuild",
|
|
"watch": "concurrently --raw \"npm run --workspaces --if-present watch\"",
|
|
"clean": "npm run --workspaces clean",
|
|
"lint-local": "eslint --max-warnings 0 .eslintrc.cjs",
|
|
"lint-local-ide": "npm run lint-local || exit 0",
|
|
"lint": "npm run lint-local && npm run --workspaces lint",
|
|
"lint-ide": "npm run lint-local-ide && npm run --workspaces lint-ide",
|
|
"test": "npm run --workspaces test",
|
|
"prepare": "npm run rebuild"
|
|
},
|
|
"devDependencies": {
|
|
"@manuth/eslint-plugin-typescript": "^4.0.1",
|
|
"concurrently": "^7.6.0",
|
|
"eslint": "^8.29.0"
|
|
}
|
|
}
|