2020-08-04 23:13:22 +03:00
|
|
|
{
|
2020-12-21 23:46:28 +03:00
|
|
|
"name": "@redux-devtools/chart-monitor",
|
2021-11-06 20:44:49 +03:00
|
|
|
"version": "1.9.1",
|
2020-08-04 23:13:22 +03:00
|
|
|
"description": "Chart monitor for Redux DevTools",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"react",
|
|
|
|
"chart"
|
|
|
|
],
|
2020-09-22 04:23:38 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-chart-monitor",
|
2020-08-04 23:13:22 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
2020-09-22 04:23:38 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "romseguy",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
2020-08-04 23:13:22 +03:00
|
|
|
},
|
2020-09-22 04:23:38 +03:00
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
2020-09-22 04:23:38 +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"
|
2020-08-04 23:13:22 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2020-09-22 04:23:38 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2021-11-06 20:44:49 +03:00
|
|
|
"d3-state-visualizer": "^1.4.1",
|
2020-08-10 03:54:00 +03:00
|
|
|
"deepmerge": "^4.2.2",
|
2021-12-27 05:12:31 +03:00
|
|
|
"prop-types": "^15.8.0",
|
2020-08-04 23:13:22 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0"
|
2020-09-22 04:23:38 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/cli": "^7.16.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@babel/core": "^7.16.5",
|
|
|
|
"@babel/preset-env": "^7.16.5",
|
|
|
|
"@babel/preset-react": "^7.16.5",
|
|
|
|
"@babel/preset-typescript": "^7.16.5",
|
2021-11-06 20:44:49 +03:00
|
|
|
"@redux-devtools/core": "^3.9.1",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/react": "^17.0.38",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
|
|
"@typescript-eslint/parser": "^5.8.0",
|
|
|
|
"eslint": "^8.5.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
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-10-22 19:11:42 +03:00
|
|
|
"react": "^17.0.2",
|
2021-11-01 16:59:32 +03:00
|
|
|
"redux": "^4.1.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2021-12-27 05:12:31 +03:00
|
|
|
"typescript": "~4.5.4"
|
2020-09-22 04:23:38 +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"
|
2020-08-04 23:13:22 +03:00
|
|
|
}
|
|
|
|
}
|