mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
9a77585dd7
* chore(deps): update all non-major dependencies * Prettify * Combine versions * Downgrade knex * Engine changes * Only LTS * Greater than * Combine lodash * Fix type * Fix type * Update snapshots Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
74 lines
2.4 KiB
JSON
Executable File
74 lines
2.4 KiB
JSON
Executable File
{
|
|
"name": "devui",
|
|
"version": "1.0.0-9",
|
|
"description": "Reusable React components for building DevTools monitors and apps.",
|
|
"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)",
|
|
"files": [
|
|
"lib",
|
|
"fonts"
|
|
],
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run storybook",
|
|
"storybook": "start-storybook -p 6006 -s ./fonts",
|
|
"build-storybook": "build-storybook -s ./fonts",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@rjsf/core": "^2.5.1",
|
|
"@types/base16": "^1.0.2",
|
|
"@types/codemirror": "^0.0.109",
|
|
"@types/prop-types": "^15.7.4",
|
|
"@types/react-select": "^3.1.2",
|
|
"@types/redux-devtools-themes": "^1.0.0",
|
|
"@types/simple-element-resize-detector": "^1.3.0",
|
|
"@types/styled-components": "^5.1.13",
|
|
"base16": "^1.0.0",
|
|
"codemirror": "^5.62.3",
|
|
"color": "^3.2.1",
|
|
"prop-types": "^15.7.2",
|
|
"react-icons": "^3.11.0",
|
|
"react-select": "^3.2.0",
|
|
"redux-devtools-themes": "^1.0.0",
|
|
"simple-element-resize-detector": "^1.3.0",
|
|
"styled-components": "^5.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@storybook/addon-essentials": "^6.3.7",
|
|
"@storybook/react": "^6.3.7",
|
|
"@types/enzyme": "^3.10.9",
|
|
"@types/enzyme-adapter-react-16": "^1.0.6",
|
|
"csstype": "^3.0.8",
|
|
"enzyme": "^3.11.0",
|
|
"enzyme-adapter-react-16": "^1.15.6",
|
|
"enzyme-to-json": "^3.6.2",
|
|
"react": "^16.14.0",
|
|
"react-dom": "^16.14.0",
|
|
"react-is": "^16.13.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.3.0 || ^17.0.0"
|
|
}
|
|
}
|