2018-12-27 02:00:29 +03:00
|
|
|
{
|
2020-12-22 20:02:14 +03:00
|
|
|
"name": "@redux-devtools/app",
|
2022-01-08 05:24:58 +03:00
|
|
|
"version": "1.0.0",
|
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": [
|
2022-01-10 18:41:53 +03:00
|
|
|
"dist",
|
2019-01-03 23:43:56 +03:00
|
|
|
"src",
|
2019-01-04 22:44:26 +03:00
|
|
|
"umd"
|
2019-01-03 23:43:56 +03:00
|
|
|
],
|
2022-01-10 18:41:53 +03:00
|
|
|
"main": "dist/redux-devtools-app.cjs.js",
|
|
|
|
"module": "dist/redux-devtools-app.esm.js",
|
|
|
|
"types": "dist/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",
|
2022-01-10 18:41:53 +03:00
|
|
|
"build": "yarn run build:lib && yarn run build:web && yarn run build:umd && yarn run build:umd:min",
|
|
|
|
"build:lib": "rollup -c",
|
|
|
|
"build:web": "webpack --env platform=web --progress",
|
|
|
|
"build: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",
|
2022-01-10 18:41:53 +03:00
|
|
|
"clean": "rimraf build dist umd",
|
2020-10-26 02:32:04 +03:00
|
|
|
"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": {
|
2022-01-10 18:41:53 +03:00
|
|
|
"@babel/runtime": "^7.16.7",
|
2022-01-08 05:24:58 +03:00
|
|
|
"@redux-devtools/chart-monitor": "^1.9.2",
|
|
|
|
"@redux-devtools/core": "^3.9.2",
|
|
|
|
"@redux-devtools/inspector-monitor": "^1.0.2",
|
|
|
|
"@redux-devtools/inspector-monitor-test-tab": "^0.7.4",
|
|
|
|
"@redux-devtools/inspector-monitor-trace-tab": "^0.2.4",
|
|
|
|
"@redux-devtools/log-monitor": "^2.3.2",
|
|
|
|
"@redux-devtools/rtk-query-monitor": "^1.0.2",
|
|
|
|
"@redux-devtools/slider-monitor": "^2.0.0",
|
|
|
|
"@redux-devtools/ui": "^1.0.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@reduxjs/toolkit": "^1.7.1",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2022-01-08 05:24:58 +03:00
|
|
|
"d3-state-visualizer": "^1.4.2",
|
2021-06-19 04:47:26 +03:00
|
|
|
"javascript-stringify": "^2.1.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jsan": "^3.1.14",
|
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",
|
2021-12-27 05:12:31 +03:00
|
|
|
"prop-types": "^15.8.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"react-icons": "^4.3.1",
|
2021-10-22 19:11:42 +03:00
|
|
|
"react-is": "^17.0.2",
|
2021-11-01 16:59:32 +03:00
|
|
|
"react-redux": "^7.2.6",
|
|
|
|
"redux": "^4.1.2",
|
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": {
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/core": "^7.16.7",
|
2022-01-10 18:41:53 +03:00
|
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.16.7",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/preset-env": "^7.16.7",
|
|
|
|
"@babel/preset-react": "^7.16.7",
|
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2021-11-22 07:02:21 +03:00
|
|
|
"@rjsf/core": "^3.2.1",
|
2022-01-10 18:41:53 +03:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
2021-12-08 07:11:07 +03:00
|
|
|
"@testing-library/jest-dom": "^5.16.1",
|
2021-10-22 17:49:53 +03:00
|
|
|
"@testing-library/react": "^12.1.2",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@types/jest": "^27.4.0",
|
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-12-27 05:12:31 +03:00
|
|
|
"@types/lodash": "^4.14.178",
|
|
|
|
"@types/node": "^16.11.17",
|
|
|
|
"@types/react": "^17.0.38",
|
2021-11-08 05:33:44 +03:00
|
|
|
"@types/react-dom": "^17.0.11",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/react-redux": "^7.1.21",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/socketcluster-client": "^13.0.5",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/styled-components": "^5.1.19",
|
2021-12-04 22:04:59 +03:00
|
|
|
"@types/testing-library__jest-dom": "^5.14.2",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@types/webpack-dev-server": "^4.5.1",
|
2021-10-21 07:26:47 +03:00
|
|
|
"@types/webpack-env": "^1.16.3",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
2021-10-21 07:26:47 +03:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-11-08 05:33:44 +03:00
|
|
|
"css-loader": "^6.5.1",
|
2022-01-03 08:10:29 +03:00
|
|
|
"eslint": "^8.6.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2022-01-03 08:10:29 +03:00
|
|
|
"eslint-plugin-jest": "^25.3.4",
|
2021-12-27 05:12:31 +03:00
|
|
|
"eslint-plugin-react": "^7.28.0",
|
2021-11-10 17:32:42 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2021-12-04 22:04:59 +03:00
|
|
|
"fork-ts-checker-webpack-plugin": "^6.5.0",
|
2021-11-08 05:33:44 +03:00
|
|
|
"html-loader": "^3.0.1",
|
2021-11-01 16:59:32 +03:00
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jest": "^27.4.5",
|
2021-08-29 07:09:37 +03:00
|
|
|
"path-browserify": "^1.0.1",
|
2021-10-22 19:11:42 +03:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-01-10 18:41:53 +03:00
|
|
|
"rollup": "^2.63.0",
|
|
|
|
"rollup-plugin-typescript2": "^0.31.1",
|
2021-10-25 03:42:08 +03:00
|
|
|
"style-loader": "^3.3.1",
|
2021-10-21 07:26:47 +03:00
|
|
|
"styled-components": "^5.3.3",
|
2021-12-27 05:12:31 +03:00
|
|
|
"ts-jest": "^27.1.2",
|
2021-10-25 03:42:08 +03:00
|
|
|
"ts-node": "^10.4.0",
|
2022-01-10 18:41:53 +03:00
|
|
|
"tslib": "^2.3.1",
|
2021-12-27 05:12:31 +03:00
|
|
|
"typescript": "~4.5.4",
|
2021-09-19 02:47:03 +03:00
|
|
|
"url-loader": "^4.1.1",
|
2021-12-08 07:11:07 +03:00
|
|
|
"webpack": "^5.65.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"webpack-cli": "^4.9.1",
|
2022-01-03 08:10:29 +03:00
|
|
|
"webpack-dev-server": "^4.7.2"
|
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",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/styled-components": "^5.1.19",
|
2021-09-20 00:59:01 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"styled-components": "^5.3.3"
|
2019-01-04 22:44:26 +03:00
|
|
|
}
|
2018-12-27 02:00:29 +03:00
|
|
|
}
|