2018-12-07 17:44:11 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/core": "^7.19.3",
|
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
|
|
"@changesets/cli": "^2.25.0",
|
2022-10-18 16:26:57 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
|
|
"@typescript-eslint/parser": "^5.40.1",
|
2022-10-10 02:36:16 +03:00
|
|
|
"eslint": "^8.25.0",
|
2022-04-04 06:59:41 +03:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-10-18 16:26:57 +03:00
|
|
|
"eslint-plugin-jest": "^27.1.2",
|
|
|
|
"eslint-plugin-react": "^7.31.10",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2022-10-29 00:15:02 +03:00
|
|
|
"jest": "^29.2.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"prettier": "2.7.1",
|
2022-10-14 17:20:40 +03:00
|
|
|
"typescript": "~4.8.4",
|
2022-10-18 15:59:57 +03:00
|
|
|
"nx": "^15.0.0",
|
2022-10-20 17:03:03 +03:00
|
|
|
"@nrwl/nx-cloud": "^15.0.0"
|
2018-12-07 17:44:11 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"format": "prettier --write .",
|
2022-01-31 02:38:03 +03:00
|
|
|
"format:check": "prettier --check .",
|
2022-05-08 21:51:47 +03:00
|
|
|
"build:all": "nx run-many --target=build --all",
|
|
|
|
"lint:all": "nx run-many --target=lint --all",
|
|
|
|
"test:all": "nx run-many --target=test --all",
|
2022-05-08 16:49:09 +03:00
|
|
|
"release": "pnpm build:all && changeset publish"
|
2018-12-07 17:44:11 +03:00
|
|
|
},
|
2022-05-08 21:51:47 +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"
|
|
|
|
],
|
2022-10-18 16:26:57 +03:00
|
|
|
"packageManager": "pnpm@7.13.5",
|
2022-05-08 16:49:09 +03:00
|
|
|
"pnpm": {
|
|
|
|
"overrides": {
|
|
|
|
"@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process"
|
2022-06-06 19:22:05 +03:00
|
|
|
},
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"allowedVersions": {
|
|
|
|
"react": "18",
|
|
|
|
"react-dom": "18"
|
|
|
|
}
|
2022-05-08 16:49:09 +03:00
|
|
|
}
|
|
|
|
}
|
2018-12-07 17:44:11 +03:00
|
|
|
}
|