mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
64aa035538
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
112 lines
3.9 KiB
JSON
112 lines
3.9 KiB
JSON
{
|
|
"name": "@redux-devtools/ui",
|
|
"version": "1.3.0",
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-ui",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
|
"files": [
|
|
"fonts",
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": [
|
|
"*.css"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"start": "pnpm run storybook",
|
|
"storybook": "start-storybook --port 6006 --static-dir ./fonts",
|
|
"build:storybook": "build-storybook --static-dir ./fonts --quiet",
|
|
"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",
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --no-babelrc --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"build:css": "ncp fonts lib/fonts",
|
|
"clean": "rimraf lib storybook-static",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"lint:css": "stylelint \"./src/**/*.js\"",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"prepublish": "pnpm run type-check && pnpm run lint && pnpm run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.19.0",
|
|
"@rjsf/core": "^4.2.3",
|
|
"@types/base16": "^1.0.2",
|
|
"@types/codemirror": "^5.60.5",
|
|
"@types/json-schema": "^7.0.11",
|
|
"@types/prop-types": "^15.7.5",
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
|
"@types/simple-element-resize-detector": "^1.3.0",
|
|
"base16": "^1.0.0",
|
|
"codemirror": "^5.65.9",
|
|
"color": "^4.2.3",
|
|
"prop-types": "^15.8.1",
|
|
"react-icons": "^4.4.0",
|
|
"react-select": "^5.4.0",
|
|
"redux-devtools-themes": "^1.0.0",
|
|
"simple-element-resize-detector": "^1.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.19.3",
|
|
"@babel/core": "^7.19.3",
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
"@babel/preset-env": "^7.19.3",
|
|
"@babel/preset-react": "^7.18.6",
|
|
"@babel/preset-typescript": "^7.18.6",
|
|
"@storybook/addon-essentials": "^6.5.12",
|
|
"@storybook/react": "^6.5.12",
|
|
"@testing-library/dom": "^8.19.0",
|
|
"@testing-library/react": "^13.4.0",
|
|
"@testing-library/user-event": "^14.4.3",
|
|
"@types/color": "^3.0.3",
|
|
"@types/jest": "^27.5.2",
|
|
"@types/react": "^18.0.21",
|
|
"@types/styled-components": "^5.1.26",
|
|
"@typescript-eslint/eslint-plugin": "^5.39.0",
|
|
"@typescript-eslint/parser": "^5.39.0",
|
|
"babel-loader": "^8.2.5",
|
|
"csstype": "^3.1.1",
|
|
"eslint": "^8.25.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-jest": "^27.1.1",
|
|
"eslint-plugin-react": "^7.31.9",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"jest": "^27.5.1",
|
|
"ncp": "^2.0.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-is": "^18.2.0",
|
|
"require-from-string": "^2.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"styled-components": "^5.3.6",
|
|
"stylelint": "^14.13.0",
|
|
"stylelint-config-prettier": "^9.0.3",
|
|
"stylelint-config-standard": "^25.0.0",
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
"stylelint-processor-styled-components": "^1.10.0",
|
|
"ts-jest": "^27.1.5",
|
|
"typescript": "~4.7.4",
|
|
"webpack": "^5.74.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
"@types/styled-components": "^5.1.26",
|
|
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
|
|
"styled-components": "^5.3.6"
|
|
}
|
|
}
|