redux-devtools/packages/devui/package.json

84 lines
2.6 KiB
JSON
Raw Normal View History

2019-01-03 16:00:55 +03:00
{
"name": "devui",
"version": "1.0.0-5",
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",
"storybook": "start-storybook -p 9001 -c .storybook -s ./fonts",
"publish-storybook": "bash .scripts/publish_storybook.sh",
"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": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@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-08-01 01:11:36 +03:00
"@storybook/addon-actions": "^4.1.18",
"@storybook/addon-info": "^4.1.18",
"@storybook/addon-knobs": "^4.1.18",
"@storybook/addon-options": "^4.1.18",
"@storybook/react": "4.1.18",
2020-08-02 03:55:32 +03:00
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"git-url-parse": "^11.1.2",
"jest": "^26.2.2",
"jsdom": "^16.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"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": {
"react": "^16.3.0"
2019-01-03 16:00:55 +03:00
},
"dependencies": {
"base16": "^1.0.0",
"codemirror": "^5.56.0",
"color": "^3.1.2",
"prop-types": "^15.7.2",
"react-icons": "^3.10.0",
"react-is": "^16.13.1",
"react-jsonschema-form": "^1.8.1",
"react-select": "^1.3.0",
2019-01-03 16:00:55 +03:00
"redux-devtools-themes": "^1.0.0",
"simple-element-resize-detector": "^1.3.0",
"styled-components": "^5.1.1"
2019-01-03 16:00:55 +03:00
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
2019-01-03 16:00:55 +03:00
},
"main": "lib/index.js"
}