react-rxjs/package.json
2021-02-18 02:35:29 +01:00

68 lines
1.4 KiB
JSON

{
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"bundlewatch": {
"ci": {
"trackBranches": [
"main"
]
},
"files": [
{
"path": "./packages/core/dist/core.cjs.production.min.js",
"maxSize": "4 kB",
"compression": "none"
},
{
"path": "./packages/dom/dist/dom.cjs.production.min.js",
"maxSize": "1 kB",
"compression": "none"
},
{
"path": "./packages/utils/dist/utils.cjs.production.min.js",
"maxSize": "4 kB",
"compression": "none"
}
]
},
"scripts": {
"build": "wsrun -t build",
"lint": "wsrun lint",
"format": "wsrun format",
"test": "wsrun test"
},
"prettier": {
"printWidth": 80,
"semi": false,
"trailingComma": "all"
},
"devDependencies": {
"cross-env": "^7.0.3",
"esbuild": "^0.8.46",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"wsrun": "^5.2.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.11.1",
"**/@typescript-eslint/parser": "^4.11.1",
"**/jest": "^26.6.3",
"**/ts-jest": "^26.4.4",
"**/typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lint"
}
}
}