2018-12-07 17:44:11 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/core": "^7.24.7",
|
|
|
|
"@babel/eslint-parser": "^7.24.7",
|
|
|
|
"@changesets/cli": "^2.27.5",
|
|
|
|
"@nrwl/nx-cloud": "^18.0.1",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
|
|
"@typescript-eslint/parser": "^7.12.0",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint": "^8.57.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-02-24 02:18:02 +03:00
|
|
|
"eslint-plugin-jest": "^27.9.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"eslint-plugin-react": "^7.34.2",
|
|
|
|
"eslint-plugin-react-hooks": "^4.6.2",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"nx": "^18.3.5",
|
|
|
|
"prettier": "3.3.1",
|
2024-01-08 02:08:46 +03:00
|
|
|
"typescript": "~5.3.3"
|
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-11-07 17:42:25 +03:00
|
|
|
"build:all": "nx run-many --target=build --all --parallel=1",
|
|
|
|
"lint:all": "nx run-many --target=lint --all --parallel=1",
|
|
|
|
"test:all": "nx run-many --target=test --all --parallel=1",
|
|
|
|
"clean:all": "nx run-many --target=clean --all --parallel=1",
|
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"
|
|
|
|
],
|
2024-06-07 04:21:49 +03:00
|
|
|
"packageManager": "pnpm@8.15.8"
|
2018-12-07 17:44:11 +03:00
|
|
|
}
|