зеркало из https://github.com/microsoft/lage.git
55 строки
1.8 KiB
JSON
55 строки
1.8 KiB
JSON
{
|
|
"name": "lage-monorepo",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/lage.git"
|
|
},
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*",
|
|
"docs",
|
|
"scripts"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "lage build --scope=!docs --verbose",
|
|
"watch": "lage build --scope=cli --no-dependents --verbose --unstable-watch",
|
|
"change": "beachball change",
|
|
"checkchange": "beachball check",
|
|
"release": "beachball publish -y --tag latest",
|
|
"start": "lage start --scope=!docs --verbose --concurrency 100",
|
|
"test": "lage test --scope=!docs --verbose",
|
|
"lint": "lage lint",
|
|
"decks:build": "npm exec --package=@marp-team/marp-cli -- marp -I decks --pdf -o decks/dist",
|
|
"docs": "yarn workspace @lage-run/docs start",
|
|
"docs:build": "yarn workspace @lage-run/docs build",
|
|
"gh-pages": "gh-pages",
|
|
"format": "prettier --config .prettierrc packages/**/*.ts **/*.json --write --ignore-path .gitignore",
|
|
"format:check": "prettier --config .prettierrc packages/**/*.ts **/*.json --check --ignore-path .gitignore",
|
|
"prepare": "husky install",
|
|
"postinstall": "patch-package"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "29.2.0",
|
|
"@types/node": "^16.0.0",
|
|
"beachball": "2.31.4",
|
|
"fast-glob": "^3.2.11",
|
|
"gh-pages": "4.0.0",
|
|
"husky": "8.0.1",
|
|
"lage-npm": "npm:@lage-run/lage@2.5.6",
|
|
"lint-staged": "13.0.3",
|
|
"patch-package": "6.4.7",
|
|
"prettier": "2.7.1",
|
|
"syncpack": "^8.3.9"
|
|
},
|
|
"resolutions": {
|
|
"workspace-tools": "^0.29.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.gitignore": "prettier --config .prettierrc --write --ignore-path .gitignore",
|
|
"*.ts": "prettier --config .prettierrc --write --ignore-path .gitignore",
|
|
"*.json": "prettier --config .prettierrc --write --ignore-path .gitignore"
|
|
}
|
|
}
|