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": {
|
2020-08-01 21:21:04 +03:00
|
|
|
"@babel/cli": "^7.10.5",
|
|
|
|
"@babel/core": "^7.11.0",
|
|
|
|
"@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",
|
|
|
|
"babel-loader": "^8.1.0",
|
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-01 21:21:04 +03:00
|
|
|
"enzyme": "^3.11.0",
|
|
|
|
"enzyme-adapter-react-16": "^1.15.2",
|
|
|
|
"enzyme-to-json": "^3.5.0",
|
|
|
|
"git-url-parse": "^7.2.0",
|
|
|
|
"jest": "^24.9.0",
|
|
|
|
"jsdom": "^11.12.0",
|
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
|
|
|
"react-test-renderer": "^16.13.1",
|
|
|
|
"rimraf": "^2.7.1",
|
|
|
|
"stylelint": "^7.13.0",
|
|
|
|
"stylelint-config-standard": "^15.0.1",
|
2019-01-09 02:08:34 +03:00
|
|
|
"stylelint-processor-styled-components": "^0.0.4"
|
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",
|
|
|
|
"color": "^2.0.1",
|
|
|
|
"prop-types": "^15.7.2",
|
2019-01-03 16:00:55 +03:00
|
|
|
"react-icons": "^2.2.7",
|
2020-08-01 21:21:04 +03:00
|
|
|
"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",
|
2020-08-01 21:21:04 +03:00
|
|
|
"simple-element-resize-detector": "^1.3.0",
|
|
|
|
"styled-components": "^2.4.1"
|
2019-01-03 16:00:55 +03:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"setupTestFrameworkScriptFile": "<rootDir>/tests/setup.js"
|
|
|
|
},
|
|
|
|
"main": "lib/index.js"
|
|
|
|
}
|