redux-devtools/package.json

55 lines
1.7 KiB
JSON
Raw Normal View History

2018-12-07 17:44:11 +03:00
{
"private": true,
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@changesets/cli": "^2.25.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.2",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.2.2",
"prettier": "2.7.1",
"typescript": "~4.8.4",
"nx": "^15.0.0",
"@nrwl/nx-cloud": "^15.0.0"
2018-12-07 17:44:11 +03:00
},
"scripts": {
"format": "prettier --write .",
2022-01-31 02:38:03 +03:00
"format:check": "prettier --check .",
"build:all": "nx run-many --target=build --all",
"lint:all": "nx run-many --target=lint --all",
"test:all": "nx run-many --target=test --all",
"clean:all": "nx run-many --target=clean --all",
"release": "pnpm build:all && changeset publish"
2018-12-07 17:44:11 +03:00
},
"workspaces": [
"extension",
"packages/*",
"packages/d3-state-visualizer/examples/tree",
"packages/react-dock/demo",
"packages/react-json-tree/examples",
"packages/redux-devtools/examples/counter",
"packages/redux-devtools/examples/todomvc",
"packages/redux-devtools-inspector-monitor/demo",
"packages/redux-devtools-inspector-monitor-test-tab/demo",
"packages/redux-devtools-rtk-query-monitor/demo",
"packages/redux-devtools-slider-monitor/examples/todomvc"
],
"packageManager": "pnpm@7.13.5",
"pnpm": {
"overrides": {
"@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
}
}
2018-12-07 17:44:11 +03:00
}