mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"babel-eslint": "^10.0.0",
|
|
"eslint": "^5.12.0",
|
|
"eslint-config-prettier": "^3.3.0",
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
"eslint-plugin-react": "7.12.3",
|
|
"jest": "^24.1.0",
|
|
"lerna": "3.9.0",
|
|
"lint-staged": "^8.1.0",
|
|
"prettier": "^1.15.3"
|
|
},
|
|
"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}' --ignore-path .eslintignore --single-quote --write",
|
|
"precommit": "lint-staged",
|
|
"test": "jest --onlyChanged",
|
|
"test:all": "jest"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"packages/react-json-tree/examples",
|
|
"packages/redux-devtools/examples/counter",
|
|
"packages/redux-devtools/examples/todomvc",
|
|
"packages/redux-slider-monitor/examples/todomvc"
|
|
],
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx}": [
|
|
"prettier --single-quote --write",
|
|
"yarn lint:fix",
|
|
"git add"
|
|
],
|
|
"*.{json,css,html,md}": [
|
|
"prettier --single-quote --write",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|