2018-12-27 02:00:29 +03:00
|
|
|
{
|
2020-12-22 20:02:14 +03:00
|
|
|
"name": "@redux-devtools/app",
|
2021-06-11 05:41:29 +03:00
|
|
|
"version": "1.0.0-7",
|
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": {
|
|
|
|
"start": "webpack-dev-server --hot --inline --env.development --env.platform=web --progress",
|
|
|
|
"build": "npm run build:types && npm run build:js && npm run build:web && npm run build:umd && npm run build:umd:min",
|
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
|
|
"build:web": "rimraf ./build/web && webpack -p --env.platform=web --progress",
|
|
|
|
"build:umd": "rimraf ./umd && webpack --progress --config webpack.config.umd.ts",
|
|
|
|
"build:umd:min": "webpack --env.production --progress --config webpack.config.umd.ts",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
"type-check:watch": "npm run type-check -- --watch",
|
|
|
|
"preversion": "npm run type-check && npm run lint && npm run test",
|
|
|
|
"prepublishOnly": "npm run clean && npm run build"
|
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",
|
|
|
|
"@redux-devtools/inspector-monitor": "^0.15.0",
|
2021-06-11 05:41:29 +03:00
|
|
|
"@redux-devtools/inspector-monitor-test-tab": "^0.7.1",
|
|
|
|
"@redux-devtools/inspector-monitor-trace-tab": "^0.2.1",
|
2021-03-06 18:38:32 +03:00
|
|
|
"@redux-devtools/log-monitor": "^2.3.0",
|
2021-06-11 05:41:29 +03:00
|
|
|
"@redux-devtools/slider-monitor": "^2.0.0-8",
|
2021-03-06 16:57:19 +03:00
|
|
|
"d3-state-visualizer": "^1.4.0",
|
2021-06-11 05:41:29 +03:00
|
|
|
"devui": "^1.0.0-9",
|
2020-08-09 01:04:46 +03:00
|
|
|
"javascript-stringify": "^2.0.1",
|
2018-12-27 02:00:29 +03:00
|
|
|
"jsan": "^3.1.13",
|
2020-05-04 18:27:33 +03:00
|
|
|
"jsondiffpatch": "^0.4.1",
|
2020-08-01 21:21:04 +03:00
|
|
|
"localforage": "^1.9.0",
|
|
|
|
"lodash": "^4.17.19",
|
|
|
|
"prop-types": "^15.7.2",
|
2020-08-09 04:18:45 +03:00
|
|
|
"react-icons": "^3.10.0",
|
2020-08-09 07:15:49 +03:00
|
|
|
"react-is": "^16.13.1",
|
2020-08-09 07:55:00 +03:00
|
|
|
"react-redux": "^7.2.1",
|
2020-08-01 21:21:04 +03:00
|
|
|
"redux": "^4.0.5",
|
|
|
|
"redux-persist": "^4.10.2",
|
2020-08-09 04:18:45 +03:00
|
|
|
"socketcluster-client": "^14.3.1",
|
2020-08-09 07:15:49 +03:00
|
|
|
"styled-components": "^5.1.1"
|
2019-01-04 22:44:26 +03:00
|
|
|
},
|
2020-10-26 02:32:04 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"@rjsf/core": "^2.4.0",
|
|
|
|
"@types/json-schema": "^7.0.6",
|
|
|
|
"@types/socketcluster-client": "^13.0.3",
|
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.15.3",
|
|
|
|
"enzyme-to-json": "^3.5.0",
|
|
|
|
"react": "^16.13.1",
|
2021-06-06 23:02:32 +03:00
|
|
|
"react-dom": "^16.13.1"
|
2020-10-26 02:32:04 +03:00
|
|
|
},
|
2019-01-04 22:44:26 +03:00
|
|
|
"peerDependencies": {
|
2021-03-06 18:31:16 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0"
|
2019-01-04 22:44:26 +03:00
|
|
|
}
|
2018-12-27 02:00:29 +03:00
|
|
|
}
|