redux-devtools/package.json

56 lines
1.5 KiB
JSON
Raw Normal View History

2018-12-07 17:44:11 +03:00
{
"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"
2018-12-07 17:44:11 +03:00
},
"scripts": {
2018-12-11 03:28:55 +03:00
"lerna": "lerna",
"build": "lerna run prepare --since master --stream --sort -- --scripts-prepend-node-path",
"build:all": "lerna run build",
2018-12-11 03:28:55 +03:00
"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",
2019-01-09 03:18:30 +03:00
"test": "jest --onlyChanged",
"test:all": "jest"
2018-12-07 17:44:11 +03:00
},
"workspaces": [
"packages/*",
"packages/d3-state-visualizer/examples/tree",
2020-08-01 00:41:16 +03:00
"packages/react-json-tree/examples",
"packages/redux-devtools/examples/counter",
"packages/redux-devtools/examples/todomvc",
"packages/redux-slider-monitor/examples/todomvc"
2019-01-03 18:40:38 +03:00
],
2019-02-06 02:59:55 +03:00
"engines": {
"node": ">=10.13.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
2019-02-06 02:59:55 +03:00
},
2019-01-10 21:51:14 +03:00
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"yarn lint:fix"
2019-01-10 21:51:14 +03:00
],
"*.{json,css,html,md}": [
"prettier --write"
2019-01-10 21:51:14 +03:00
]
}
2018-12-07 17:44:11 +03:00
}