mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 11:51:41 +03:00
f454ac8a7f
* Build all * Lint all * Test (almost) all * Test CLI * Format * Make styled-components a peer dependency * Add missing peer dependencies * Fix electron fixture
35 lines
1001 B
JSON
35 lines
1001 B
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^24.4.0",
|
|
"eslint-plugin-react": "^7.25.1",
|
|
"lerna": "^4.0.0",
|
|
"prettier": "2.4.1",
|
|
"typescript": "~4.3.5"
|
|
},
|
|
"scripts": {
|
|
"format": "prettier --write .",
|
|
"build:all": "lerna run build",
|
|
"lint:all": "lerna run lint",
|
|
"test:all": "lerna run test",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"workspaces": [
|
|
"extension",
|
|
"packages/*",
|
|
"packages/d3-state-visualizer/examples/tree",
|
|
"packages/react-json-tree/examples",
|
|
"packages/redux-devtools/examples/counter",
|
|
"packages/redux-devtools/examples/todomvc",
|
|
"packages/redux-devtools-slider-monitor/examples/todomvc"
|
|
],
|
|
"resolutions": {
|
|
"@babel/highlight/chalk": "Methuselah96/chalk#head=v2-without-process"
|
|
},
|
|
"packageManager": "yarn@3.0.2"
|
|
}
|