mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.1.0",
|
|
"eslint": "^7.6.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-babel": "^5.3.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.20.5",
|
|
"husky": "^4.2.5",
|
|
"jest": "^26.2.2",
|
|
"lerna": "^3.22.1",
|
|
"lint-staged": "^10.2.11",
|
|
"prettier": "^2.0.5"
|
|
},
|
|
"scripts": {
|
|
"lerna": "lerna",
|
|
"build": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path",
|
|
"build:all": "lerna run build",
|
|
"publish": "lerna publish",
|
|
"canary": "lerna publish --canary preminor --npm-tag alpha",
|
|
"next": "lerna publish --bump prerelease --npm-tag next",
|
|
"lint": "eslint \"**/*.{js,jsx}\" --cache",
|
|
"lint:fix": "eslint \"**/*.{js,jsx}\" --fix --cache",
|
|
"lint:all": "eslint \"**/*.{js,jsx}\"",
|
|
"prettify": "prettier \"**/*.{js,jsx,json,css,html,md}\" --write",
|
|
"test": "jest --onlyChanged",
|
|
"test:all": "jest"
|
|
},
|
|
"workspaces": [
|
|
"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"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"prettier --write",
|
|
"yarn lint:fix"
|
|
],
|
|
"*.{json,css,html,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|