2019-08-30 12:23:37 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
2019-08-30 13:00:06 +03:00
|
|
|
"name": "backfill-repo",
|
2019-08-30 12:23:37 +03:00
|
|
|
"license": "MIT",
|
2019-08-30 13:00:06 +03:00
|
|
|
"version": "2.0.0",
|
2019-08-30 12:23:37 +03:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2019-11-08 16:55:41 +03:00
|
|
|
"build": "lerna run --stream build",
|
2020-08-18 19:00:26 +03:00
|
|
|
"change": "beachball change --scope \"!packages/utils-test/__fixtures__/*\"",
|
2020-10-13 11:37:29 +03:00
|
|
|
"checkchange": "beachball check --scope \"!packages/utils-test/__fixtures__/*\"",
|
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",
|
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",
|
2019-10-17 15:30:28 +03:00
|
|
|
"test": "lerna run test",
|
2019-09-30 15:31:53 +03:00
|
|
|
"prettier": "prettier \"{.,**}/*.{tsx,ts,js,json,md,yaml}\" --write",
|
2019-10-17 15:30:28 +03:00
|
|
|
"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
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-07-13 14:41:23 +03:00
|
|
|
"lerna": "3.22.1",
|
2020-12-01 12:10:44 +03:00
|
|
|
"prettier": "2.2.0",
|
2020-12-01 12:40:50 +03:00
|
|
|
"typescript": "4.1.2"
|
2019-08-30 13:00:06 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-10 21:19:26 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.27.1",
|
|
|
|
"@typescript-eslint/parser": "^5.27.1",
|
2020-06-06 21:54:17 +03:00
|
|
|
"beachball": "^1.31.3",
|
2022-06-10 21:19:26 +03:00
|
|
|
"eslint": "^8.17.0",
|
|
|
|
"eslint-config-prettier": "^8.5.0",
|
|
|
|
"eslint-plugin-import": "^2.26.0",
|
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2020-01-23 14:13:47 +03:00
|
|
|
"execa": "^4.0.0",
|
2020-01-23 14:21:54 +03:00
|
|
|
"husky": "^4.2.0",
|
2020-06-01 20:13:36 +03:00
|
|
|
"lint-staged": "^10.2.7",
|
2019-10-17 15:30:28 +03:00
|
|
|
"lodash.merge": "^4.6.2",
|
|
|
|
"prettier-package-json": "^2.1.0",
|
|
|
|
"resolve-from": "^5.0.0"
|
2019-08-30 13:00:06 +03:00
|
|
|
},
|
2019-09-26 15:29:22 +03:00
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
2019-10-17 15:30:28 +03:00
|
|
|
"pre-commit": "yarn update-project-references && lint-staged"
|
2019-09-26 15:29:22 +03:00
|
|
|
}
|
|
|
|
},
|
2019-08-30 13:00:06 +03:00
|
|
|
"lint-staged": {
|
|
|
|
"package.json": [
|
|
|
|
"prettier-package-json --write",
|
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
],
|
2020-04-06 10:39:07 +03:00
|
|
|
"**/*.{js,json,md,yaml}": [
|
2019-08-30 13:00:06 +03:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
2020-04-06 10:39:07 +03:00
|
|
|
],
|
|
|
|
"**/*.{ts}": [
|
|
|
|
"eslint --fix",
|
|
|
|
"git add"
|
2019-08-30 13:00:06 +03:00
|
|
|
]
|
2020-02-06 18:05:18 +03:00
|
|
|
},
|
|
|
|
"resolutions": {
|
|
|
|
"**/cache-base/union-value/set-value": "^2.0.0"
|
2019-08-30 12:23:37 +03:00
|
|
|
}
|
|
|
|
}
|