2021-08-26 22:33:06 +03:00
|
|
|
{
|
|
|
|
"name": "@redux-devtools/rtk-query-monitor",
|
2023-01-05 17:18:48 +03:00
|
|
|
"version": "3.1.1",
|
2021-08-26 22:33:06 +03:00
|
|
|
"description": "rtk-query monitor for Redux DevTools",
|
|
|
|
"keywords": [
|
|
|
|
"redux",
|
|
|
|
"devtools",
|
|
|
|
"flux",
|
|
|
|
"react",
|
|
|
|
"redux-toolkit",
|
|
|
|
"rtk-query"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/FaberVitale/redux-devtools/tree/feat/rtk-query-monitor/packages/redux-devtools-rtk-query-monitor",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"author": {
|
|
|
|
"name": "FaberVitale",
|
|
|
|
"url": "https://github.com/FaberVitale"
|
|
|
|
},
|
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2021-08-26 22:33:06 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"sideEffects": false,
|
2021-08-26 22:33:06 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 16:49:09 +03:00
|
|
|
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
|
2022-01-24 05:11:46 +03:00
|
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
2022-05-18 02:15:31 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
2022-01-24 05:11:46 +03:00
|
|
|
"clean": "rimraf lib",
|
2022-07-05 16:31:38 +03:00
|
|
|
"test": "jest",
|
2021-08-26 22:33:06 +03:00
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
2022-07-05 16:31:38 +03:00
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
2021-08-26 22:33:06 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/runtime": "^7.21.0",
|
2022-05-30 20:22:06 +03:00
|
|
|
"@redux-devtools/ui": "^1.3.0",
|
2022-12-22 00:13:25 +03:00
|
|
|
"@types/lodash": "^4.14.191",
|
2022-04-11 19:15:24 +03:00
|
|
|
"@types/prop-types": "^15.7.5",
|
2021-08-26 22:33:06 +03:00
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"hex-rgba": "^1.0.2",
|
2023-02-15 16:44:51 +03:00
|
|
|
"immutable": "^4.2.4",
|
|
|
|
"jss": "^10.10.0",
|
|
|
|
"jss-preset-default": "^10.10.0",
|
2021-08-26 22:33:06 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2022-01-23 02:00:06 +03:00
|
|
|
"prop-types": "^15.8.1",
|
2022-01-25 03:26:20 +03:00
|
|
|
"react-base16-styling": "^0.9.1",
|
2023-01-05 17:18:48 +03:00
|
|
|
"react-json-tree": "^0.18.0",
|
2021-08-26 22:33:06 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/cli": "^7.21.0",
|
|
|
|
"@babel/core": "^7.21.0",
|
2022-10-10 02:36:16 +03:00
|
|
|
"@babel/eslint-parser": "^7.19.1",
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.21.0",
|
2022-11-15 17:22:58 +03:00
|
|
|
"@babel/preset-env": "^7.20.2",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@babel/preset-react": "^7.18.6",
|
2023-03-02 15:41:28 +03:00
|
|
|
"@babel/preset-typescript": "^7.21.0",
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2023-03-02 15:41:28 +03:00
|
|
|
"@reduxjs/toolkit": "^1.9.3",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@testing-library/jest-dom": "^5.16.5",
|
2023-02-17 04:40:30 +03:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"@types/jest": "^29.4.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"@types/hex-rgba": "^1.0.1",
|
2022-05-04 14:43:48 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.7",
|
2023-02-15 16:44:51 +03:00
|
|
|
"@types/react": "^18.0.28",
|
2023-03-02 15:41:28 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.54.0",
|
|
|
|
"@typescript-eslint/parser": "^5.54.0",
|
|
|
|
"eslint": "^8.35.0",
|
2023-01-07 23:33:03 +03:00
|
|
|
"eslint-config-prettier": "^8.6.0",
|
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2023-02-15 16:44:51 +03:00
|
|
|
"eslint-plugin-react": "^7.32.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-02-15 16:44:51 +03:00
|
|
|
"jest": "^29.4.3",
|
|
|
|
"jest-environment-jsdom": "^29.4.3",
|
2022-06-20 04:12:23 +03:00
|
|
|
"react": "^18.2.0",
|
2022-07-05 16:31:38 +03:00
|
|
|
"react-dom": "^18.2.0",
|
2022-11-15 17:22:58 +03:00
|
|
|
"react-redux": "^8.0.5",
|
2023-02-15 16:44:51 +03:00
|
|
|
"redux": "^4.2.1",
|
2023-03-02 15:41:28 +03:00
|
|
|
"rimraf": "^4.1.3",
|
2023-02-15 16:44:51 +03:00
|
|
|
"ts-jest": "^29.0.5",
|
|
|
|
"typescript": "~4.9.5"
|
2021-08-26 22:33:06 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2022-05-30 21:49:52 +03:00
|
|
|
"@redux-devtools/core": "^3.13.1",
|
2023-03-02 15:41:28 +03:00
|
|
|
"@reduxjs/toolkit": "^1.9.3",
|
2022-05-30 18:32:32 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@types/styled-components": "^5.1.26",
|
2022-05-30 18:32:32 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2022-01-07 18:06:15 +03:00
|
|
|
"redux": "^3.4.0 || ^4.0.0",
|
2023-03-02 15:41:28 +03:00
|
|
|
"styled-components": "^5.3.8"
|
2021-08-26 22:33:06 +03:00
|
|
|
}
|
|
|
|
}
|