2019-08-30 12:23:37 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
2019-08-30 13:00:06 +03:00
|
|
|
"name": "backfill-repo",
|
2022-12-08 05:36:01 +03:00
|
|
|
"version": "2.0.0",
|
2019-08-30 12:23:37 +03:00
|
|
|
"license": "MIT",
|
2022-09-08 06:07:24 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/microsoft/backfill"
|
|
|
|
},
|
2019-08-30 12:23:37 +03:00
|
|
|
"scripts": {
|
2019-11-08 16:55:41 +03:00
|
|
|
"build": "lerna run --stream build",
|
2022-09-08 06:07:24 +03:00
|
|
|
"change": "beachball change",
|
|
|
|
"checkchange": "beachball check",
|
2022-09-16 02:57:35 +03:00
|
|
|
"format": "prettier --write .",
|
2019-11-08 16:55:41 +03:00
|
|
|
"postinstall": "yarn update-project-references",
|
2019-08-30 12:23:37 +03:00
|
|
|
"lerna": "lerna",
|
2020-04-06 10:39:07 +03:00
|
|
|
"lint": "eslint --fix . --ext .ts",
|
2022-09-16 02:34:19 +03:00
|
|
|
"prepare": "husky install",
|
2020-04-22 14:58:52 +03:00
|
|
|
"prepublishOnly": "eslint . --ext .ts && lerna run build && lerna run test",
|
2020-06-06 21:54:17 +03:00
|
|
|
"release": "beachball publish",
|
2022-09-16 03:35:35 +03:00
|
|
|
"syncpack:check": "syncpack list-mismatches",
|
|
|
|
"syncpack:fix": "syncpack fix-mismatches",
|
2019-10-17 15:30:28 +03:00
|
|
|
"test": "lerna run test",
|
|
|
|
"update-project-references": "node tools/update-project-references.js",
|
2019-08-30 13:00:06 +03:00
|
|
|
"watch": "lerna run watch --parallel"
|
2019-08-30 12:23:37 +03:00
|
|
|
},
|
2022-12-08 05:36:01 +03:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
|
|
|
"resolutions": {
|
|
|
|
"**/cache-base/union-value/set-value": "^2.0.0"
|
|
|
|
},
|
2019-08-30 13:00:06 +03:00
|
|
|
"devDependencies": {
|
2022-12-08 05:32:03 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.45.1",
|
|
|
|
"@typescript-eslint/parser": "5.45.1",
|
2022-12-08 05:18:23 +03:00
|
|
|
"beachball": "2.31.5",
|
2022-12-08 05:32:03 +03:00
|
|
|
"eslint": "8.29.0",
|
2022-12-08 03:55:52 +03:00
|
|
|
"eslint-config-prettier": "8.5.0",
|
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-12-08 05:32:03 +03:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
2022-12-08 05:22:02 +03:00
|
|
|
"execa": "4.1.0",
|
2022-09-16 02:34:19 +03:00
|
|
|
"husky": "7.0.4",
|
2022-12-08 05:26:08 +03:00
|
|
|
"lerna": "3.22.1",
|
2022-09-16 02:34:19 +03:00
|
|
|
"lint-staged": "12.5.0",
|
2022-12-08 03:55:52 +03:00
|
|
|
"lodash.merge": "4.6.2",
|
2022-12-08 05:26:08 +03:00
|
|
|
"prettier": "2.8.1",
|
2022-12-08 05:36:01 +03:00
|
|
|
"prettier-package-json": "2.7.0",
|
2022-12-08 03:55:52 +03:00
|
|
|
"resolve-from": "5.0.0",
|
2022-12-08 05:26:08 +03:00
|
|
|
"syncpack": "8.2.4",
|
|
|
|
"typescript": "4.1.2"
|
2019-08-30 13:00:06 +03:00
|
|
|
},
|
2022-09-08 06:07:24 +03:00
|
|
|
"beachball": {
|
|
|
|
"scope": [
|
|
|
|
"!packages/utils-test/__fixtures__/*"
|
|
|
|
]
|
|
|
|
},
|
2019-08-30 13:00:06 +03:00
|
|
|
"lint-staged": {
|
2022-09-16 02:34:19 +03:00
|
|
|
"**/package.json": [
|
2019-08-30 13:00:06 +03:00
|
|
|
"prettier-package-json --write",
|
2022-09-16 02:34:19 +03:00
|
|
|
"prettier --write"
|
2019-08-30 13:00:06 +03:00
|
|
|
],
|
2020-04-06 10:39:07 +03:00
|
|
|
"**/*.{js,json,md,yaml}": [
|
2022-09-16 02:34:19 +03:00
|
|
|
"prettier --write"
|
2020-04-06 10:39:07 +03:00
|
|
|
],
|
2022-09-16 02:34:19 +03:00
|
|
|
"**/*.ts": [
|
|
|
|
"eslint --fix"
|
2019-08-30 13:00:06 +03:00
|
|
|
]
|
2020-02-06 18:05:18 +03:00
|
|
|
},
|
2022-09-16 03:35:35 +03:00
|
|
|
"syncpack": {
|
|
|
|
"peer": false,
|
2022-12-08 03:55:52 +03:00
|
|
|
"workspace": false,
|
|
|
|
"versionGroups": [
|
|
|
|
{
|
|
|
|
"dependencies": [
|
|
|
|
"execa"
|
|
|
|
],
|
|
|
|
"packages": [
|
|
|
|
"backfill-repo"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
2019-08-30 12:23:37 +03:00
|
|
|
}
|
|
|
|
}
|