2019-01-03 16:00:55 +03:00
|
|
|
{
|
2021-09-18 17:00:58 +03:00
|
|
|
"name": "@redux-devtools/ui",
|
2022-01-08 05:24:58 +03:00
|
|
|
"version": "1.0.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": [
|
|
|
|
"lib",
|
|
|
|
"fonts"
|
|
|
|
],
|
2020-09-09 17:35:22 +03:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
2019-01-03 16:00:55 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"start": "yarn run storybook",
|
2020-09-02 20:30:47 +03:00
|
|
|
"storybook": "start-storybook -p 6006 -s ./fonts",
|
|
|
|
"build-storybook": "build-storybook -s ./fonts",
|
2021-10-02 00:34:29 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js && yarn run build-storybook",
|
2020-09-09 17:35:22 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
|
|
|
"clean": "rimraf lib",
|
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"lint:css": "stylelint \"./src/**/*.js\"",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-11-22 07:02:21 +03:00
|
|
|
"@rjsf/core": "^3.2.1",
|
2020-09-13 07:02:24 +03:00
|
|
|
"@types/base16": "^1.0.2",
|
2021-10-21 07:26:47 +03:00
|
|
|
"@types/codemirror": "^5.60.5",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@types/json-schema": "^7.0.9",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2020-09-13 07:02:24 +03:00
|
|
|
"@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",
|
2021-12-27 05:12:31 +03:00
|
|
|
"codemirror": "^5.65.0",
|
2021-10-02 00:34:29 +03:00
|
|
|
"color": "^3.2.1",
|
2021-12-27 05:12:31 +03:00
|
|
|
"prop-types": "^15.8.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"react-icons": "^4.3.1",
|
2021-11-08 05:33:44 +03:00
|
|
|
"react-select": "^5.2.1",
|
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": {
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/cli": "^7.16.7",
|
|
|
|
"@babel/core": "^7.16.7",
|
|
|
|
"@babel/preset-env": "^7.16.7",
|
|
|
|
"@babel/preset-react": "^7.16.7",
|
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@storybook/addon-essentials": "^6.4.9",
|
|
|
|
"@storybook/react": "^6.4.9",
|
2021-11-11 01:49:26 +03:00
|
|
|
"@testing-library/dom": "^8.11.1",
|
2021-10-22 07:18:03 +03:00
|
|
|
"@testing-library/react": "^12.1.2",
|
|
|
|
"@testing-library/user-event": "^13.5.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@types/color": "^3.0.2",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@types/jest": "^27.4.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/react": "^17.0.38",
|
|
|
|
"@types/styled-components": "^5.1.19",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
|
|
|
"@typescript-eslint/parser": "^5.8.1",
|
2021-10-22 07:18:03 +03:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-11-22 07:02:21 +03:00
|
|
|
"csstype": "^3.0.10",
|
2022-01-03 08:10:29 +03:00
|
|
|
"eslint": "^8.6.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2022-01-03 08:10:29 +03:00
|
|
|
"eslint-plugin-jest": "^25.3.4",
|
2021-12-27 05:12:31 +03:00
|
|
|
"eslint-plugin-react": "^7.28.0",
|
2021-11-10 17:32:42 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"jest": "^27.4.5",
|
2021-10-22 19:11:42 +03:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
|
|
|
"react-is": "^17.0.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2021-10-21 07:26:47 +03:00
|
|
|
"styled-components": "^5.3.3",
|
2021-12-27 05:12:31 +03:00
|
|
|
"stylelint": "^14.2.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
2021-11-14 23:23:59 +03:00
|
|
|
"stylelint-config-standard": "^24.0.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
|
|
"stylelint-processor-styled-components": "^1.10.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"ts-jest": "^27.1.2",
|
|
|
|
"typescript": "~4.5.4",
|
2021-12-08 07:11:07 +03:00
|
|
|
"webpack": "^5.65.0"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
2020-09-09 17:35:22 +03:00
|
|
|
"peerDependencies": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
2021-12-27 05:12:31 +03:00
|
|
|
"@types/styled-components": "^5.1.19",
|
2021-09-20 00:59:01 +03:00
|
|
|
"react": "^16.3.0 || ^17.0.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"styled-components": "^5.3.3"
|
2020-09-09 17:35:22 +03:00
|
|
|
}
|
2019-01-03 16:00:55 +03:00
|
|
|
}
|