mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
63 lines
2.0 KiB
JSON
63 lines
2.0 KiB
JSON
{
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.10.5",
|
|
"@babel/core": "^7.11.1",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@babel/preset-typescript": "^7.10.4",
|
|
"@types/jest": "^26.0.9",
|
|
"@types/node": "^14.6.0",
|
|
"@types/webpack": "^4.41.21",
|
|
"@types/webpack-dev-server": "^3.11.0",
|
|
"@typescript-eslint/eslint-plugin": "^3.9.0",
|
|
"@typescript-eslint/parser": "^3.9.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"babel-loader": "^8.1.0",
|
|
"eslint": "^7.6.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-babel": "^5.3.1",
|
|
"eslint-plugin-jest": "^23.20.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"eslint-plugin-react": "^7.20.5",
|
|
"jest": "^26.2.2",
|
|
"lerna": "^3.22.1",
|
|
"prettier": "^2.0.5",
|
|
"raw-loader": "^4.0.1",
|
|
"rimraf": "^3.0.2",
|
|
"style-loader": "^1.2.1",
|
|
"ts-jest": "^26.2.0",
|
|
"ts-node": "^9.0.0",
|
|
"typescript": "^3.9.7",
|
|
"webpack": "^4.44.1",
|
|
"webpack-cli": "^3.3.12",
|
|
"webpack-dev-server": "^3.11.0"
|
|
},
|
|
"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,ts,tsx}\" --cache",
|
|
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix --cache",
|
|
"lint:all": "eslint \"**/*.{js,jsx,ts,tsx}\"",
|
|
"prettify": "prettier --write .",
|
|
"prettier:check": "prettier --check .",
|
|
"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"
|
|
}
|
|
}
|