mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-29 04:53:54 +03:00
1a4e509b4b
* Fix * Test * Changes * Run prettier * Remove single quote
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.1.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-prettier": "^3.6.0",
|
|
"eslint-plugin-babel": "^5.3.1",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.20.5",
|
|
"husky": "^4.2.5",
|
|
"jest": "^24.9.0",
|
|
"lerna": "^3.22.1",
|
|
"lint-staged": "^8.2.1",
|
|
"prettier": "^1.19.1"
|
|
},
|
|
"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-slider-monitor/examples/todomvc"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"prettier --write",
|
|
"yarn lint:fix",
|
|
"git add"
|
|
],
|
|
"*.{json,css,html,md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|