2018-12-22 03:50:57 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/log-monitor",
|
2021-03-06 18:38:32 +03:00
|
|
|
"version": "2.3.0",
|
2018-12-22 03:50:57 +03:00
|
|
|
"description": "The default tree view monitor for Redux DevTools",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"react",
|
|
|
|
"hot reloading",
|
|
|
|
"time travel",
|
|
|
|
"live edit"
|
|
|
|
],
|
2020-08-27 16:19:37 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-log-monitor",
|
2018-12-22 03:50:57 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-08-27 16:19:37 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools"
|
2018-12-22 03:50:57 +03:00
|
|
|
},
|
2020-08-27 16:19:37 +03:00
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
2020-08-27 16:19:37 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"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"
|
2018-12-22 03:50:57 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-08-27 16:19:37 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2020-08-27 16:19:37 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2020-08-01 21:21:04 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
|
|
|
"prop-types": "^15.7.2",
|
2021-03-06 18:38:32 +03:00
|
|
|
"react-json-tree": "^0.15.0",
|
2018-12-22 03:50:57 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0"
|
2020-08-27 16:19:37 +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-03-06 18:38:32 +03:00
|
|
|
"@redux-devtools/core": "^3.9.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/react": "^16.14.16",
|
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
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"eslint-plugin-react": "^7.26.1",
|
2021-06-19 04:47:26 +03:00
|
|
|
"react": "^16.14.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"redux": "^4.1.1",
|
|
|
|
"rimraf": "^3.0.2",
|
2021-10-05 05:32:03 +03:00
|
|
|
"typescript": "~4.4.3"
|
2020-08-27 16:19:37 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2020-12-22 20:02:14 +03:00
|
|
|
"@redux-devtools/core": "^3.7.0",
|
2021-03-06 18:31:16 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
|
|
"react": "^16.3.0 || ^17.0.0",
|
2020-12-21 17:08:08 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0"
|
2018-12-22 03:50:57 +03:00
|
|
|
}
|
|
|
|
}
|