mirror of
https://github.com/re-rxjs/react-rxjs.git
synced 2025-12-08 18:01:51 +00:00
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"private": true,
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"bundlewatch": {
|
|
"ci": {
|
|
"trackBranches": [
|
|
"main"
|
|
]
|
|
},
|
|
"files": [
|
|
{
|
|
"path": "./packages/core/dist/core.cjs.production.min.js",
|
|
"maxSize": "6 kB",
|
|
"compression": "none"
|
|
},
|
|
{
|
|
"path": "./packages/dom/dist/dom.cjs.production.min.js",
|
|
"maxSize": "2 kB",
|
|
"compression": "none"
|
|
},
|
|
{
|
|
"path": "./packages/utils/dist/utils.cjs.production.min.js",
|
|
"maxSize": "5 kB",
|
|
"compression": "none"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build --workspace=@react-rxjs/core && npm run build --workspace=@react-rxjs/utils --workspace=@react-rxjs/dom",
|
|
"lint": "npm run lint --workspaces",
|
|
"format": "npm ru format --workspaces",
|
|
"test": "npm run test --workspaces",
|
|
"prepare": "husky install"
|
|
},
|
|
"prettier": {
|
|
"printWidth": 80,
|
|
"semi": false,
|
|
"trailingComma": "all"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@testing-library/jest-dom": "^5.16.4",
|
|
"@testing-library/react": "^13.0.0",
|
|
"@testing-library/react-hooks": "^8.0.0-alpha.1",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/react": "^18.0.1",
|
|
"@types/react-dom": "^18.0.0",
|
|
"babel-jest": "^27.5.1",
|
|
"esbuild": "^0.14.34",
|
|
"husky": ">=7.0.4",
|
|
"jest": "^27.5.1",
|
|
"jest-marbles": "^3.0.2",
|
|
"lint-staged": ">=11.2.0",
|
|
"prettier": "^2.6.2",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"react-test-renderer": "^18.0.0",
|
|
"rxjs": "^7.5.5",
|
|
"ts-jest": "^27.1.4",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
|
|
}
|
|
}
|