2019-01-03 16:00:55 +03:00
|
|
|
{
|
|
|
|
"name": "devui",
|
2020-09-07 19:44:15 +03:00
|
|
|
"version": "1.0.0-6",
|
2019-01-10 21:51:14 +03:00
|
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
|
|
|
"files": [
|
|
|
|
"lib",
|
|
|
|
"fonts"
|
|
|
|
],
|
2019-01-03 16:00:55 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
2019-01-10 21:51:14 +03:00
|
|
|
"author": "Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)",
|
2019-01-03 16:00:55 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"start": "npm run storybook",
|
|
|
|
"build": "rimraf ./lib && babel ./src --out-dir ./lib --ignore tests,stories",
|
2020-08-10 07:35:01 +03:00
|
|
|
"lint:css": "stylelint \"./src/**/*.js\"",
|
2019-01-03 16:00:55 +03:00
|
|
|
"test:update": "npm run jest -- -u",
|
|
|
|
"test": "jest --no-cache",
|
2020-09-02 20:30:47 +03:00
|
|
|
"storybook": "start-storybook -p 6006 -s ./fonts",
|
|
|
|
"build-storybook": "build-storybook -s ./fonts",
|
2019-01-03 16:00:55 +03:00
|
|
|
"prepare": "npm run build",
|
2019-01-10 20:23:33 +03:00
|
|
|
"prepublishOnly": "npm run test && npm run build"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
|
|
"devDependencies": {
|
2020-08-01 21:21:04 +03:00
|
|
|
"@babel/cli": "^7.10.5",
|
2020-08-08 22:46:01 +03:00
|
|
|
"@babel/core": "^7.11.1",
|
2020-08-01 21:21:04 +03:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
|
|
"@babel/plugin-proposal-decorators": "^7.10.5",
|
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.10.4",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.11.0",
|
|
|
|
"@babel/preset-env": "^7.11.0",
|
|
|
|
"@babel/preset-react": "^7.10.4",
|
2020-09-02 20:30:47 +03:00
|
|
|
"@storybook/addon-essentials": "^6.0.21",
|
|
|
|
"@storybook/react": "^6.0.21",
|
2020-08-02 03:55:32 +03:00
|
|
|
"babel-loader": "^8.1.0",
|
2020-08-01 21:21:04 +03:00
|
|
|
"enzyme": "^3.11.0",
|
2020-08-08 22:46:01 +03:00
|
|
|
"enzyme-adapter-react-16": "^1.15.3",
|
2020-08-01 21:21:04 +03:00
|
|
|
"enzyme-to-json": "^3.5.0",
|
2020-08-08 22:46:01 +03:00
|
|
|
"jest": "^26.2.2",
|
2020-08-09 01:04:46 +03:00
|
|
|
"jsdom": "^16.4.0",
|
2020-08-01 21:21:04 +03:00
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
2020-09-02 20:30:47 +03:00
|
|
|
"react-is": "^16.13.1",
|
2020-08-01 21:21:04 +03:00
|
|
|
"react-test-renderer": "^16.13.1",
|
2020-08-08 22:46:01 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2020-08-10 07:35:01 +03:00
|
|
|
"stylelint": "^13.6.1",
|
|
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
|
|
"stylelint-config-standard": "^20.0.0",
|
|
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
|
|
"stylelint-processor-styled-components": "^1.10.0"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2020-08-01 21:21:04 +03:00
|
|
|
"react": "^16.3.0"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"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-08-09 07:15:49 +03:00
|
|
|
"react-is": "^16.13.1",
|
2020-08-01 21:21:04 +03:00
|
|
|
"react-jsonschema-form": "^1.8.1",
|
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
|
|
|
},
|
|
|
|
"jest": {
|
2020-08-08 22:46:01 +03:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<rootDir>/tests/setup.js"
|
|
|
|
]
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"main": "lib/index.js"
|
|
|
|
}
|