redux-devtools/packages/redux-devtools-log-monitor/package.json
renovate[bot] 9a77585dd7
chore(deps): update all non-major dependencies (#758)
* chore(deps): update all non-major dependencies

* Prettify

* Combine versions

* Downgrade knex

* Engine changes

* Only LTS

* Greater than

* Combine lodash

* Fix type

* Fix type

* Update snapshots

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-08-26 09:52:23 -04:00

64 lines
1.8 KiB
JSON

{
"name": "@redux-devtools/log-monitor",
"version": "2.3.0",
"description": "The default tree view monitor for Redux DevTools",
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit"
],
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-log-monitor",
"bugs": {
"url": "https://github.com/reduxjs/redux-devtools/issues"
},
"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"
},
"scripts": {
"build": "npm run build:types && npm run build:js",
"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",
"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",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@types/lodash.debounce": "^4.0.6",
"@types/prop-types": "^15.7.4",
"@types/redux-devtools-themes": "^1.0.0",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"react-json-tree": "^0.15.0",
"redux-devtools-themes": "^1.0.0"
},
"devDependencies": {
"@redux-devtools/core": "^3.9.0",
"@types/react": "^16.14.14",
"react": "^16.14.0",
"redux": "^4.1.1"
},
"peerDependencies": {
"@redux-devtools/core": "^3.7.0",
"@types/react": "^16.3.0 || ^17.0.0",
"react": "^16.3.0 || ^17.0.0",
"redux": "^3.4.0 || ^4.0.0"
}
}