2018-12-07 17:44:11 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2023-08-28 05:49:22 +03:00
|
|
|
"@babel/core": "^7.22.11",
|
|
|
|
"@babel/eslint-parser": "^7.22.11",
|
2023-07-12 21:49:09 +03:00
|
|
|
"@changesets/cli": "^2.26.2",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"eslint": "^8.48.0",
|
2023-08-07 16:13:49 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-08-07 15:21:50 +03:00
|
|
|
"eslint-plugin-jest": "^27.2.3",
|
2023-08-21 02:49:11 +03:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-08-28 05:49:22 +03:00
|
|
|
"jest": "^29.6.4",
|
2023-08-21 02:49:11 +03:00
|
|
|
"prettier": "3.0.2",
|
2023-07-13 01:07:28 +03:00
|
|
|
"typescript": "~5.1.6",
|
2023-08-28 05:49:22 +03:00
|
|
|
"nx": "^16.7.4",
|
2023-08-21 02:49:11 +03:00
|
|
|
"@nrwl/nx-cloud": "^16.3.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-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"
|
|
|
|
],
|
2023-08-28 05:49:22 +03:00
|
|
|
"packageManager": "pnpm@8.7.0"
|
2018-12-07 17:44:11 +03:00
|
|
|
}
|