mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 12:17:18 +03:00
1f996a30a4
* Version Packages * Updates Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
126 lines
4.6 KiB
JSON
126 lines
4.6 KiB
JSON
{
|
|
"name": "@redux-devtools/app",
|
|
"version": "2.1.3",
|
|
"description": "Redux DevTools app",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"build",
|
|
"lib",
|
|
"src",
|
|
"umd"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --hot --env development --env platform=web --progress",
|
|
"build": "yarn run build:lib && yarn run build:web && yarn run build:umd && yarn run build:umd:min",
|
|
"build:lib": "yarn build:cjs && yarn build:esm && yarn build:types",
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:web": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env platform=web --progress",
|
|
"build:umd": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --progress --config webpack.config.umd.ts",
|
|
"build:umd:min": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --env production --progress --config webpack.config.umd.ts",
|
|
"clean": "rimraf build lib umd",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.17.8",
|
|
"@redux-devtools/chart-monitor": "^2.1.0",
|
|
"@redux-devtools/core": "^3.11.0",
|
|
"@redux-devtools/inspector-monitor": "^2.1.1",
|
|
"@redux-devtools/inspector-monitor-test-tab": "^0.8.5",
|
|
"@redux-devtools/inspector-monitor-trace-tab": "^0.3.3",
|
|
"@redux-devtools/log-monitor": "^3.1.0",
|
|
"@redux-devtools/rtk-query-monitor": "^2.1.1",
|
|
"@redux-devtools/slider-monitor": "^3.1.1",
|
|
"@redux-devtools/ui": "^1.2.1",
|
|
"@reduxjs/toolkit": "^1.8.1",
|
|
"@types/prop-types": "^15.7.4",
|
|
"d3-state-visualizer": "^1.6.0",
|
|
"javascript-stringify": "^2.1.0",
|
|
"jsan": "^3.1.14",
|
|
"jsondiffpatch": "^0.4.1",
|
|
"localforage": "^1.10.0",
|
|
"lodash": "^4.17.21",
|
|
"prop-types": "^15.8.1",
|
|
"react-icons": "^4.3.1",
|
|
"react-is": "^17.0.2",
|
|
"react-redux": "^7.2.8",
|
|
"redux": "^4.1.2",
|
|
"redux-persist": "^6.0.0",
|
|
"socketcluster-client": "^14.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.17.6",
|
|
"@babel/core": "^7.17.8",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@rjsf/core": "^4.1.1",
|
|
"@testing-library/jest-dom": "^5.16.3",
|
|
"@testing-library/react": "^12.1.4",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/jsan": "^3.1.2",
|
|
"@types/json-schema": "^7.0.11",
|
|
"@types/lodash": "^4.14.181",
|
|
"@types/node": "^16.11.26",
|
|
"@types/react": "^17.0.43",
|
|
"@types/react-dom": "^17.0.14",
|
|
"@types/react-redux": "^7.1.23",
|
|
"@types/socketcluster-client": "^13.0.5",
|
|
"@types/styled-components": "^5.1.24",
|
|
"@types/testing-library__jest-dom": "^5.14.3",
|
|
"@types/webpack-env": "^1.16.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
|
"@typescript-eslint/parser": "^5.17.0",
|
|
"babel-loader": "^8.2.4",
|
|
"cross-env": "^7.0.3",
|
|
"css-loader": "^6.7.1",
|
|
"eslint": "^8.12.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^26.1.3",
|
|
"eslint-plugin-react": "~7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.4.0",
|
|
"fork-ts-checker-webpack-plugin": "^7.2.2",
|
|
"html-loader": "^3.1.0",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"jest": "^27.5.1",
|
|
"path-browserify": "^1.0.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"style-loader": "^3.3.1",
|
|
"styled-components": "^5.3.5",
|
|
"ts-jest": "^27.1.4",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "~4.5.5",
|
|
"webpack": "^5.71.0",
|
|
"webpack-cli": "^4.9.2",
|
|
"webpack-dev-server": "^4.7.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"@types/styled-components": "^5.1.24",
|
|
"react": "^16.3.0 || ^17.0.0",
|
|
"styled-components": "^5.3.5"
|
|
}
|
|
}
|