backfill/package.json

84 строки
2.0 KiB
JSON

{
"private": true,
"name": "@microsoft/backfill-repo",
"version": "2.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/backfill"
},
"scripts": {
"build": "lerna run --stream build",
"change": "beachball change",
"checkchange": "beachball check",
"format": "prettier --write .",
"postinstall": "yarn update-project-references",
"lerna": "lerna",
"lint": "eslint --fix . --ext .ts",
"prepare": "husky install",
"prepublishOnly": "eslint . --ext .ts && lerna run build && lerna run test",
"release": "beachball publish",
"syncpack:check": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"test": "lerna run test",
"update-project-references": "node tools/update-project-references.js",
"watch": "lerna run watch --parallel"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"**/cache-base/union-value/set-value": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"beachball": "2.31.8",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-prettier": "4.2.1",
"execa": "5.1.1",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.5.0",
"lodash.merge": "4.6.2",
"prettier": "2.8.2",
"prettier-package-json": "2.8.0",
"resolve-from": "5.0.0",
"syncpack": "8.4.11",
"typescript": "4.1.2"
},
"beachball": {
"scope": [
"!packages/utils-test/__fixtures__/*"
]
},
"lint-staged": {
"**/package.json": [
"prettier-package-json --write",
"prettier --write"
],
"**/*.{js,json,md,yaml}": [
"prettier --write"
],
"**/*.ts": [
"eslint --fix"
]
},
"syncpack": {
"peer": false,
"workspace": false,
"versionGroups": [
{
"dependencies": [
"execa"
],
"packages": [
"@microsoft/backfill-repo"
]
}
]
}
}