redux-devtools/packages/redux-devtools-ui/package.json
renovate[bot] 178002de65
chore(deps): update dependency typescript to ~5.3.3 (#1564)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-12-12 20:54:11 -05:00

113 lines
3.9 KiB
JSON

{
"name": "@redux-devtools/ui",
"version": "1.3.1",
"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": "storybook dev --port 6006 --static-dir ./fonts",
"build:storybook": "storybook build --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 --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.23.5",
"@rjsf/core": "^4.2.3",
"@types/base16": "^1.0.5",
"@types/codemirror": "^5.60.15",
"@types/json-schema": "^7.0.15",
"@types/redux-devtools-themes": "^1.0.3",
"@types/simple-element-resize-detector": "^1.3.3",
"base16": "^1.0.0",
"codemirror": "^5.65.16",
"color": "^4.2.3",
"react-icons": "^4.12.0",
"react-select": "^5.8.0",
"redux-devtools-themes": "^1.0.0",
"simple-element-resize-detector": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-webpack5": "^7.6.4",
"@testing-library/dom": "^9.3.3",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/color": "^3.0.6",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.43",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"babel-loader": "^9.1.3",
"csstype": "^3.1.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ncp": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^5.0.5",
"storybook": "^7.6.4",
"styled-components": "^5.3.11",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"ts-jest": "^29.1.1",
"typescript": "~5.3.3",
"webpack": "^5.89.0"
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
"@types/styled-components": "^5.1.34",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
"styled-components": "^5.3.11"
}
}