2019-01-03 16:00:55 +03:00
|
|
|
{
|
2021-09-18 17:00:58 +03:00
|
|
|
"name": "@redux-devtools/ui",
|
2022-05-30 20:22:06 +03:00
|
|
|
"version": "1.3.0",
|
2019-01-10 21:51:14 +03:00
|
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
2021-09-18 17:00:58 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-ui",
|
2020-09-09 17:35:22 +03:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
2019-01-10 21:51:14 +03:00
|
|
|
"files": [
|
2022-01-10 18:41:53 +03:00
|
|
|
"fonts",
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2022-01-10 18:41:53 +03:00
|
|
|
"src"
|
2019-01-10 21:51:14 +03:00
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
2022-01-31 00:45:07 +03:00
|
|
|
"sideEffects": [
|
|
|
|
"*.css"
|
|
|
|
],
|
2019-01-03 16:00:55 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-05-08 16:49:09 +03:00
|
|
|
"start": "pnpm run storybook",
|
2023-04-07 04:39:14 +03:00
|
|
|
"storybook": "storybook dev --port 6006 --static-dir ./fonts",
|
|
|
|
"build:storybook": "storybook build --static-dir ./fonts --quiet",
|
2022-05-08 16:49:09 +03:00
|
|
|
"build": "pnpm run build:lib && pnpm run build:storybook",
|
|
|
|
"build:lib": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types && pnpm run build:css",
|
2022-01-24 05:11:46 +03:00
|
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
2023-01-03 03:58:10 +03:00
|
|
|
"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
|
|
|
"build:css": "ncp fonts lib/fonts",
|
|
|
|
"clean": "rimraf lib storybook-static",
|
2020-09-09 17:35:22 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"lint:css": "stylelint \"./src/**/*.js\"",
|
|
|
|
"type-check": "tsc --noEmit",
|
2022-05-08 16:49:09 +03:00
|
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-09-27 15:23:14 +03:00
|
|
|
"@babel/runtime": "^7.23.1",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@rjsf/core": "^4.2.3",
|
2023-09-27 15:23:14 +03:00
|
|
|
"@types/base16": "^1.0.3",
|
|
|
|
"@types/codemirror": "^5.60.10",
|
|
|
|
"@types/json-schema": "^7.0.13",
|
|
|
|
"@types/prop-types": "^15.7.7",
|
|
|
|
"@types/redux-devtools-themes": "^1.0.1",
|
|
|
|
"@types/simple-element-resize-detector": "^1.3.1",
|
2019-01-03 16:00:55 +03:00
|
|
|
"base16": "^1.0.0",
|
2023-09-04 06:16:14 +03:00
|
|
|
"codemirror": "^5.65.15",
|
2022-04-05 16:11:54 +03:00
|
|
|
"color": "^4.2.3",
|
2022-01-23 02:00:06 +03:00
|
|
|
"prop-types": "^15.8.1",
|
2023-09-27 15:23:14 +03:00
|
|
|
"react-icons": "^4.11.0",
|
|
|
|
"react-select": "^5.7.5",
|
2019-01-03 16:00:55 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0",
|
2021-09-20 00:59:01 +03:00
|
|
|
"simple-element-resize-detector": "^1.3.0"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
2020-09-09 17:35:22 +03:00
|
|
|
"devDependencies": {
|
2023-09-27 15:23:14 +03:00
|
|
|
"@babel/cli": "^7.23.0",
|
|
|
|
"@babel/core": "^7.23.0",
|
|
|
|
"@babel/eslint-parser": "^7.22.15",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.22.15",
|
|
|
|
"@babel/preset-env": "^7.22.20",
|
|
|
|
"@babel/preset-react": "^7.22.15",
|
|
|
|
"@babel/preset-typescript": "^7.23.0",
|
|
|
|
"@storybook/addon-essentials": "^7.5.0-alpha.3",
|
|
|
|
"@storybook/addon-interactions": "^7.5.0-alpha.3",
|
|
|
|
"@storybook/addon-links": "^7.5.0-alpha.3",
|
|
|
|
"@storybook/react": "^7.5.0-alpha.3",
|
|
|
|
"@storybook/react-webpack5": "^7.5.0-alpha.3",
|
|
|
|
"@testing-library/dom": "^9.3.3",
|
2023-02-17 04:40:30 +03:00
|
|
|
"@testing-library/react": "^14.0.0",
|
2023-09-27 15:23:14 +03:00
|
|
|
"@testing-library/user-event": "^14.5.1",
|
|
|
|
"@types/color": "^3.0.4",
|
|
|
|
"@types/jest": "^29.5.5",
|
|
|
|
"@types/react": "^18.2.23",
|
|
|
|
"@types/styled-components": "^5.1.28",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
|
|
|
"@typescript-eslint/parser": "^6.7.3",
|
2023-07-12 21:49:09 +03:00
|
|
|
"babel-loader": "^9.1.3",
|
2023-04-11 15:45:34 +03:00
|
|
|
"csstype": "^3.1.2",
|
2023-09-27 15:23:14 +03:00
|
|
|
"eslint": "^8.50.0",
|
2023-08-07 16:13:49 +03:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-09-27 15:23:14 +03:00
|
|
|
"eslint-plugin-jest": "^27.4.0",
|
2023-08-21 02:49:11 +03:00
|
|
|
"eslint-plugin-react": "^7.33.2",
|
2022-06-20 04:12:23 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
2023-09-27 15:23:14 +03:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"jest-environment-jsdom": "^29.7.0",
|
2022-01-24 05:11:46 +03:00
|
|
|
"ncp": "^2.0.0",
|
2022-06-20 04:12:23 +03:00
|
|
|
"react": "^18.2.0",
|
|
|
|
"react-dom": "^18.2.0",
|
|
|
|
"react-is": "^18.2.0",
|
2023-09-27 15:23:14 +03:00
|
|
|
"rimraf": "^5.0.5",
|
|
|
|
"storybook": "^7.5.0-alpha.3",
|
2023-06-04 20:59:22 +03:00
|
|
|
"styled-components": "^5.3.11",
|
2023-08-21 02:49:11 +03:00
|
|
|
"stylelint": "^15.10.3",
|
2023-07-12 21:29:33 +03:00
|
|
|
"stylelint-config-standard": "^34.0.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
|
|
"stylelint-processor-styled-components": "^1.10.0",
|
2023-07-12 21:49:09 +03:00
|
|
|
"ts-jest": "^29.1.1",
|
2023-09-04 06:36:52 +03:00
|
|
|
"typescript": "~5.2.2",
|
2023-08-07 15:21:50 +03:00
|
|
|
"webpack": "^5.88.2"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
2020-09-09 17:35:22 +03:00
|
|
|
"peerDependencies": {
|
2022-05-30 18:32:32 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2023-09-27 15:23:14 +03:00
|
|
|
"@types/styled-components": "^5.1.28",
|
2022-05-30 18:32:32 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2023-06-04 20:59:22 +03:00
|
|
|
"styled-components": "^5.3.11"
|
2020-09-09 17:35:22 +03:00
|
|
|
}
|
2019-01-03 16:00:55 +03:00
|
|
|
}
|