2018-12-07 17:44:11 +03:00
|
|
|
{
|
|
|
|
"private": true,
|
|
|
|
"devDependencies": {
|
2024-02-09 02:01:24 +03:00
|
|
|
"@babel/core": "^7.23.9",
|
|
|
|
"@babel/eslint-parser": "^7.23.10",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@changesets/cli": "^2.27.1",
|
2023-12-16 20:10:27 +03:00
|
|
|
"@nrwl/nx-cloud": "^16.5.2",
|
2024-02-09 02:01:24 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
|
|
"@typescript-eslint/parser": "^6.21.0",
|
2023-12-25 07:24:56 +03:00
|
|
|
"eslint": "^8.56.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-02-09 02:01:24 +03:00
|
|
|
"eslint-plugin-jest": "^27.6.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-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
2024-02-09 02:01:24 +03:00
|
|
|
"nx": "^17.3.2",
|
|
|
|
"prettier": "3.2.5",
|
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-02-09 02:01:24 +03:00
|
|
|
"packageManager": "pnpm@8.15.1"
|
2018-12-07 17:44:11 +03:00
|
|
|
}
|