2019-01-03 16:00:55 +03:00
|
|
|
{
|
|
|
|
"name": "devui",
|
2021-03-06 16:57:19 +03:00
|
|
|
"version": "1.0.0-7",
|
2019-01-10 21:51:14 +03:00
|
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
2020-09-09 17:35:22 +03:00
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/devui",
|
|
|
|
"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": {
|
|
|
|
"start": "npm run storybook",
|
2020-09-02 20:30:47 +03:00
|
|
|
"storybook": "start-storybook -p 6006 -s ./fonts",
|
|
|
|
"build-storybook": "build-storybook -s ./fonts",
|
2020-09-09 17:35:22 +03:00
|
|
|
"build": "npm run build:types && npm run build:js",
|
|
|
|
"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:fix": "eslint . --ext .ts,.tsx --fix",
|
|
|
|
"lint:css": "stylelint \"./src/**/*.js\"",
|
|
|
|
"type-check": "tsc --noEmit",
|
|
|
|
"type-check:watch": "npm run type-check -- --watch",
|
|
|
|
"preversion": "npm run type-check && npm run lint && npm run test",
|
|
|
|
"prepublishOnly": "npm run clean && npm run build"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-10-07 03:33:25 +03:00
|
|
|
"@rjsf/core": "^2.4.0",
|
2020-09-13 07:02:24 +03:00
|
|
|
"@types/base16": "^1.0.2",
|
|
|
|
"@types/codemirror": "^0.0.97",
|
|
|
|
"@types/prop-types": "^15.7.3",
|
|
|
|
"@types/react-select": "^3.0.19",
|
|
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
|
|
|
"@types/simple-element-resize-detector": "^1.3.0",
|
|
|
|
"@types/styled-components": "^5.1.2",
|
2019-01-03 16:00:55 +03:00
|
|
|
"base16": "^1.0.0",
|
2020-08-01 21:21:04 +03:00
|
|
|
"codemirror": "^5.56.0",
|
2020-08-09 01:04:46 +03:00
|
|
|
"color": "^3.1.2",
|
2020-08-01 21:21:04 +03:00
|
|
|
"prop-types": "^15.7.2",
|
2020-08-09 04:18:45 +03:00
|
|
|
"react-icons": "^3.10.0",
|
2020-09-04 07:10:24 +03:00
|
|
|
"react-select": "^3.1.0",
|
2019-01-03 16:00:55 +03:00
|
|
|
"redux-devtools-themes": "^1.0.0",
|
2020-08-01 21:21:04 +03:00
|
|
|
"simple-element-resize-detector": "^1.3.0",
|
2020-08-09 07:15:49 +03:00
|
|
|
"styled-components": "^5.1.1"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
2020-09-09 17:35:22 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"@storybook/addon-essentials": "^6.0.21",
|
|
|
|
"@storybook/react": "^6.0.21",
|
|
|
|
"@types/enzyme": "^3.10.5",
|
|
|
|
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
|
|
"csstype": "^3.0.2",
|
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.15.3",
|
|
|
|
"enzyme-to-json": "^3.5.0",
|
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
|
|
|
"react-is": "^16.13.1"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
2020-09-09 17:35:22 +03:00
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^16.3.0"
|
|
|
|
}
|
2019-01-03 16:00:55 +03:00
|
|
|
}
|