backfill/package.json

67 строки
1.8 KiB
JSON

{
"private": true,
"name": "backfill-repo",
"license": "MIT",
"version": "2.0.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run --stream build",
"change": "beachball change --scope \"!packages/utils-test/__fixtures__/*\"",
"checkchange": "beachball check --scope \"!packages/utils-test/__fixtures__/*\"",
"postinstall": "yarn update-project-references",
"lerna": "lerna",
"lint": "eslint --fix . --ext .ts",
"prepublishOnly": "eslint . --ext .ts && lerna run build && lerna run test",
"release": "beachball publish",
"test": "lerna run test",
"prettier": "prettier \"{.,**}/*.{tsx,ts,js,json,md,yaml}\" --write",
"update-project-references": "node tools/update-project-references.js",
"watch": "lerna run watch --parallel"
},
"dependencies": {
"lerna": "3.22.1",
"prettier": "2.2.0",
"typescript": "4.1.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"beachball": "^1.31.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.0",
"husky": "^4.2.0",
"lint-staged": "^10.2.7",
"lodash.merge": "^4.6.2",
"prettier-package-json": "^2.1.0",
"resolve-from": "^5.0.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn update-project-references && lint-staged"
}
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"prettier --write",
"git add"
],
"**/*.{js,json,md,yaml}": [
"prettier --write",
"git add"
],
"**/*.{ts}": [
"eslint --fix",
"git add"
]
},
"resolutions": {
"**/cache-base/union-value/set-value": "^2.0.0"
}
}