redux-devtools/packages/redux-devtools-ui/package.json

112 lines
3.8 KiB
JSON
Raw Normal View History

2019-01-03 16:00:55 +03:00
{
"name": "@redux-devtools/ui",
"version": "1.3.0",
2019-01-10 21:51:14 +03:00
"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)",
2019-01-10 21:51:14 +03:00
"files": [
"fonts",
"lib",
"src"
2019-01-10 21:51:14 +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": {
"start": "pnpm run storybook",
"storybook": "start-storybook -p 6006 -s ./fonts",
"build:storybook": "build-storybook -s ./fonts",
"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"
2019-01-03 16:00:55 +03:00
},
"dependencies": {
"@babel/runtime": "^7.18.3",
"@rjsf/core": "^4.2.0",
"@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",
2019-01-03 16:00:55 +03:00
"base16": "^1.0.0",
"codemirror": "^5.65.5",
"color": "^4.2.3",
"prop-types": "^15.8.1",
"react-icons": "^4.4.0",
"react-select": "^5.3.2",
2019-01-03 16:00:55 +03:00
"redux-devtools-themes": "^1.0.0",
"simple-element-resize-detector": "^1.3.0"
2019-01-03 16:00:55 +03:00
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@storybook/addon-essentials": "^6.5.7",
"@storybook/react": "^6.5.7",
"@testing-library/dom": "^8.13.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.0",
"@types/color": "^3.0.3",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.12",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-loader": "^8.2.5",
"csstype": "^3.1.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^27.5.1",
"ncp": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-is": "^18.1.0",
"require-from-string": "^2.0.2",
"rimraf": "^3.0.2",
"styled-components": "^5.3.5",
"stylelint": "^14.8.5",
"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.3",
"webpack": "^5.73.0"
2019-01-03 16:00:55 +03:00
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0",
"@types/styled-components": "^5.1.25",
"react": "^16.3.0 || ^17.0.0 || ^18.0.0",
"styled-components": "^5.3.5"
}
2019-01-03 16:00:55 +03:00
}