redux-devtools/packages/devui/package.json

79 lines
2.5 KiB
JSON
Raw Normal View History

2019-01-03 16:00:55 +03:00
{
"name": "devui",
"version": "1.0.0-3",
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",
"lint:css": "stylelint './src/**/styles/*.js'",
"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": {
2019-02-06 02:59:55 +03:00
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
2019-01-09 02:08:34 +03:00
"@storybook/addon-actions": "^4.1.4",
"@storybook/addon-info": "^4.1.4",
"@storybook/addon-knobs": "^4.1.4",
"@storybook/addon-options": "^4.1.4",
"@storybook/react": "4.0.9",
2019-01-03 16:00:55 +03:00
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"enzyme-to-json": "^3.1.4",
"git-url-parse": "^7.0.1",
2019-02-06 02:59:55 +03:00
"jest": "^24.1.0",
2019-01-03 16:00:55 +03:00
"jsdom": "^11.3.0",
"react": "^16.0.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"stylelint": "^7.6.0",
"stylelint-config-standard": "^15.0.0",
2019-01-09 02:08:34 +03:00
"stylelint-processor-styled-components": "^0.0.4"
2019-01-03 16:00:55 +03:00
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0"
},
"dependencies": {
"base16": "^1.0.0",
"codemirror": "^5.21.0",
"color": "^2.0.0",
"prop-types": "^15.6.0",
"react-icons": "^2.2.7",
"react-jsonschema-form": "^1.0.0",
"react-select": "^1.0.0-rc.10",
"redux-devtools-themes": "^1.0.0",
"simple-element-resize-detector": "^1.1.0",
"styled-components": "^2.2.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js"
},
"main": "lib/index.js"
}