2018-12-27 02:00:29 +03:00
|
|
|
{
|
2020-12-22 20:02:14 +03:00
|
|
|
"name": "@redux-devtools/app",
|
2021-06-11 06:28:21 +03:00
|
|
|
"version": "1.0.0-8",
|
2020-12-22 20:02:14 +03:00
|
|
|
"description": "Redux DevTools app",
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
|
2020-10-26 02:32:04 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2019-01-03 23:43:56 +03:00
|
|
|
},
|
2020-10-26 02:32:04 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
2019-01-03 23:43:56 +03:00
|
|
|
"files": [
|
|
|
|
"src",
|
|
|
|
"lib",
|
2019-01-04 22:44:26 +03:00
|
|
|
"umd"
|
2019-01-03 23:43:56 +03:00
|
|
|
],
|
2020-10-26 02:32:04 +03:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
2018-12-27 02:00:29 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
2020-10-26 02:32:04 +03:00
|
|
|
"scripts": {
|
2021-08-29 19:40:36 +03:00
|
|
|
"start": "webpack serve --hot --env development --env platform=web --progress",
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js && yarn run build:web && yarn run build:umd && yarn run build:umd:min",
|
2020-10-26 02:32:04 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
2021-08-27 23:23:35 +03:00
|
|
|
"build:web": "rimraf ./build/web && webpack --env platform=web --progress",
|
2020-10-26 02:32:04 +03:00
|
|
|
"build:umd": "rimraf ./umd && webpack --progress --config webpack.config.umd.ts",
|
2021-08-27 23:23:35 +03:00
|
|
|
"build:umd:min": "webpack --env production --progress --config webpack.config.umd.ts",
|
2020-10-26 02:32:04 +03:00
|
|
|
"clean": "rimraf lib",
|
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
2018-12-27 02:00:29 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-06 18:38:32 +03:00
|
|
|
"@redux-devtools/chart-monitor": "^1.9.0",
|
|
|
|
"@redux-devtools/core": "^3.9.0",
|
2021-06-11 06:21:57 +03:00
|
|
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
2021-06-11 06:28:21 +03:00
|
|
|
"@redux-devtools/inspector-monitor-test-tab": "^0.7.2",
|
|
|
|
"@redux-devtools/inspector-monitor-trace-tab": "^0.2.2",
|
2021-03-06 18:38:32 +03:00
|
|
|
"@redux-devtools/log-monitor": "^2.3.0",
|
2021-08-26 22:33:06 +03:00
|
|
|
"@redux-devtools/rtk-query-monitor": "^1.0.0",
|
2021-06-11 05:41:29 +03:00
|
|
|
"@redux-devtools/slider-monitor": "^2.0.0-8",
|
2021-09-18 17:00:58 +03:00
|
|
|
"@redux-devtools/ui": "^1.0.0-9",
|
2021-08-27 02:20:13 +03:00
|
|
|
"@reduxjs/toolkit": "^1.6.1",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2021-03-06 16:57:19 +03:00
|
|
|
"d3-state-visualizer": "^1.4.0",
|
2021-06-19 04:47:26 +03:00
|
|
|
"javascript-stringify": "^2.1.0",
|
2018-12-27 02:00:29 +03:00
|
|
|
"jsan": "^3.1.13",
|
2020-05-04 18:27:33 +03:00
|
|
|
"jsondiffpatch": "^0.4.1",
|
2021-08-26 16:52:23 +03:00
|
|
|
"localforage": "^1.10.0",
|
2021-06-19 04:47:26 +03:00
|
|
|
"lodash": "^4.17.21",
|
2020-08-01 21:21:04 +03:00
|
|
|
"prop-types": "^15.7.2",
|
2021-10-04 07:29:49 +03:00
|
|
|
"react-icons": "^4.3.1",
|
2020-08-09 07:15:49 +03:00
|
|
|
"react-is": "^16.13.1",
|
2021-09-05 04:53:32 +03:00
|
|
|
"react-redux": "^7.2.5",
|
2021-08-26 16:52:23 +03:00
|
|
|
"redux": "^4.1.1",
|
2021-08-31 01:18:02 +03:00
|
|
|
"redux-persist": "^6.0.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"socketcluster-client": "^14.3.2"
|
2019-01-04 22:44:26 +03:00
|
|
|
},
|
2020-10-26 02:32:04 +03:00
|
|
|
"devDependencies": {
|
2021-09-21 00:49:13 +03:00
|
|
|
"@babel/cli": "^7.15.7",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@babel/core": "^7.15.5",
|
|
|
|
"@babel/preset-env": "^7.15.6",
|
|
|
|
"@babel/preset-react": "^7.14.5",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-08-29 18:21:38 +03:00
|
|
|
"@rjsf/core": "^3.1.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/enzyme": "^3.10.9",
|
|
|
|
"@types/enzyme-adapter-react-16": "^1.0.6",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/jest": "^27.0.2",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/jsan": "^3.1.2",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/json-schema": "^7.0.9",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/lodash": "^4.14.175",
|
|
|
|
"@types/node": "^14.17.20",
|
|
|
|
"@types/react": "^16.14.16",
|
2021-09-21 00:49:13 +03:00
|
|
|
"@types/react-dom": "^16.9.14",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/react-redux": "^7.1.18",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/socketcluster-client": "^13.0.5",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/styled-components": "^5.1.14",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@types/webpack": "^5.28.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/webpack-dev-server": "^4.3.0",
|
2021-09-21 00:49:13 +03:00
|
|
|
"@types/webpack-env": "^1.16.2",
|
2021-10-04 21:57:11 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
|
|
"@typescript-eslint/parser": "^4.33.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"babel-loader": "^8.2.2",
|
2021-09-21 00:49:13 +03:00
|
|
|
"css-loader": "^6.3.0",
|
2020-10-26 02:32:04 +03:00
|
|
|
"enzyme": "^3.11.0",
|
2021-06-19 04:47:26 +03:00
|
|
|
"enzyme-adapter-react-16": "^1.15.6",
|
|
|
|
"enzyme-to-json": "^3.6.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-10-04 21:57:11 +03:00
|
|
|
"eslint-plugin-jest": "^24.5.2",
|
2021-10-04 07:29:49 +03:00
|
|
|
"eslint-plugin-react": "^7.26.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"fork-ts-checker-webpack-plugin": "^6.3.3",
|
|
|
|
"html-loader": "^2.1.2",
|
|
|
|
"html-webpack-plugin": "^5.3.2",
|
2021-10-04 07:29:49 +03:00
|
|
|
"jest": "^27.2.4",
|
2021-08-29 07:09:37 +03:00
|
|
|
"path-browserify": "^1.0.1",
|
2021-06-19 04:47:26 +03:00
|
|
|
"react": "^16.14.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"react-dom": "^16.14.0",
|
|
|
|
"rimraf": "^3.0.2",
|
2021-10-04 07:29:49 +03:00
|
|
|
"style-loader": "^3.3.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"styled-components": "^5.3.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"ts-jest": "^27.0.5",
|
|
|
|
"ts-node": "^10.2.1",
|
|
|
|
"typescript": "~4.3.5",
|
|
|
|
"url-loader": "^4.1.1",
|
2021-10-04 21:57:11 +03:00
|
|
|
"webpack": "^5.56.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"webpack-cli": "^4.8.0",
|
2021-10-04 21:57:11 +03:00
|
|
|
"webpack-dev-server": "^4.3.1"
|
2020-10-26 02:32:04 +03:00
|
|
|
},
|
2019-01-04 22:44:26 +03:00
|
|
|
"peerDependencies": {
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
|
|
"@types/styled-components": "^5.1.14",
|
|
|
|
"react": "^16.3.0 || ^17.0.0",
|
|
|
|
"styled-components": "^5.3.1"
|
2019-01-04 22:44:26 +03:00
|
|
|
}
|
2018-12-27 02:00:29 +03:00
|
|
|
}
|