2019-01-03 16:00:55 +03:00
|
|
|
{
|
2021-09-18 17:00:58 +03:00
|
|
|
"name": "@redux-devtools/ui",
|
2024-04-08 00:19:20 +03:00
|
|
|
"version": "1.3.2",
|
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",
|
2024-04-01 23:48:58 +03:00
|
|
|
"storybook": "storybook dev -p 6006",
|
|
|
|
"build:storybook": "storybook build --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",
|
2024-08-09 06:47:07 +03:00
|
|
|
"lint": "eslint .",
|
2020-09-09 17:35:22 +03:00
|
|
|
"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": {
|
2024-08-06 06:27:22 +03:00
|
|
|
"@babel/runtime": "^7.25.0",
|
2022-08-12 06:41:53 +03:00
|
|
|
"@rjsf/core": "^4.2.3",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/codemirror": "^5.60.15",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/json-schema": "^7.0.15",
|
|
|
|
"@types/simple-element-resize-detector": "^1.3.3",
|
2024-08-06 06:27:22 +03:00
|
|
|
"codemirror": "^5.65.17",
|
2022-04-05 16:11:54 +03:00
|
|
|
"color": "^4.2.3",
|
2024-04-08 00:19:20 +03:00
|
|
|
"react-base16-styling": "^0.10.0",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react-icons": "^5.2.1",
|
2023-11-09 04:22:50 +03:00
|
|
|
"react-select": "^5.8.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": {
|
2024-07-16 16:24:47 +03:00
|
|
|
"@babel/cli": "^7.24.8",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@babel/core": "^7.25.2",
|
|
|
|
"@babel/eslint-parser": "^7.25.1",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/plugin-transform-runtime": "^7.24.7",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@babel/preset-env": "^7.25.3",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@babel/preset-react": "^7.24.7",
|
|
|
|
"@babel/preset-typescript": "^7.24.7",
|
2024-07-16 16:24:47 +03:00
|
|
|
"@chromatic-com/storybook": "1.6.1",
|
2024-08-06 06:27:22 +03:00
|
|
|
"@storybook/addon-essentials": "^8.2.7",
|
|
|
|
"@storybook/addon-interactions": "^8.2.7",
|
|
|
|
"@storybook/addon-links": "^8.2.7",
|
|
|
|
"@storybook/addon-onboarding": "^8.2.7",
|
|
|
|
"@storybook/addon-webpack5-compiler-swc": "1.0.5",
|
|
|
|
"@storybook/blocks": "^8.2.7",
|
|
|
|
"@storybook/react": "^8.2.7",
|
|
|
|
"@storybook/react-webpack5": "^8.2.7",
|
|
|
|
"@storybook/test": "^8.2.7",
|
|
|
|
"@testing-library/dom": "^10.4.0",
|
2024-06-10 04:14:22 +03:00
|
|
|
"@testing-library/react": "^16.0.0",
|
2024-01-02 00:18:59 +03:00
|
|
|
"@testing-library/user-event": "^14.5.2",
|
2023-11-09 04:22:50 +03:00
|
|
|
"@types/color": "^3.0.6",
|
2024-02-09 02:01:24 +03:00
|
|
|
"@types/jest": "^29.5.12",
|
2024-06-07 04:21:49 +03:00
|
|
|
"@types/react": "^18.3.3",
|
2023-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2023-07-12 21:49:09 +03:00
|
|
|
"babel-loader": "^9.1.3",
|
2023-12-25 07:24:56 +03:00
|
|
|
"csstype": "^3.1.3",
|
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",
|
2024-06-07 04:21:49 +03:00
|
|
|
"react": "^18.3.1",
|
|
|
|
"react-dom": "^18.3.1",
|
|
|
|
"react-is": "^18.3.1",
|
2024-07-16 18:35:07 +03:00
|
|
|
"rimraf": "^6.0.1",
|
2024-08-06 06:27:22 +03:00
|
|
|
"storybook": "^8.2.7",
|
2023-06-04 20:59:22 +03:00
|
|
|
"styled-components": "^5.3.11",
|
2024-08-06 06:27:22 +03:00
|
|
|
"stylelint": "^16.8.1",
|
2024-07-16 16:24:47 +03:00
|
|
|
"stylelint-config-standard": "^36.0.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
|
|
"stylelint-processor-styled-components": "^1.10.0",
|
2024-08-06 06:27:22 +03:00
|
|
|
"ts-jest": "^29.2.4",
|
|
|
|
"typescript": "~5.5.4",
|
2024-07-16 16:24:47 +03:00
|
|
|
"webpack": "^5.93.0"
|
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-12-10 06:44:13 +03:00
|
|
|
"@types/styled-components": "^5.1.34",
|
2022-05-30 18:32:32 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
2023-12-10 06:44:13 +03:00
|
|
|
"styled-components": "^5.3.11"
|
2020-09-09 17:35:22 +03:00
|
|
|
}
|
2019-01-03 16:00:55 +03:00
|
|
|
}
|