mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
06a1913b69
* fix(deps): update all non-major dependencies * Combine msw Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
79 lines
2.4 KiB
JSON
79 lines
2.4 KiB
JSON
{
|
|
"name": "react-dock",
|
|
"version": "0.5.1",
|
|
"description": "Resizable dockable react component",
|
|
"keywords": [
|
|
"react",
|
|
"reactjs",
|
|
"dock",
|
|
"sidebar"
|
|
],
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
"bugs": {
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"main": "lib/cjs/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/types/index.d.ts",
|
|
"sideEffects": false,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
|
|
"build:cjs": "babel src --extensions \".ts,.tsx\" --out-dir lib/cjs",
|
|
"build:esm": "babel src --config-file ./babel.config.esm.json --extensions \".ts,.tsx\" --out-dir lib/esm",
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
"clean": "rimraf lib",
|
|
"test": "jest",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"type-check": "tsc --noEmit",
|
|
"prepack": "yarn run clean && yarn run build",
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.16.7",
|
|
"@types/lodash": "^4.14.178",
|
|
"@types/prop-types": "^15.7.4",
|
|
"lodash.debounce": "^4.0.8",
|
|
"prop-types": "^15.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.16.8",
|
|
"@babel/core": "^7.16.12",
|
|
"@babel/eslint-parser": "^7.16.5",
|
|
"@babel/plugin-transform-runtime": "^7.16.10",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@babel/preset-react": "^7.16.7",
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/lodash.debounce": "^4.0.6",
|
|
"@types/react": "^17.0.38",
|
|
"@types/react-test-renderer": "^17.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.1",
|
|
"@typescript-eslint/parser": "^5.10.1",
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-jest": "^26.0.0",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"jest": "^27.4.7",
|
|
"react": "^17.0.2",
|
|
"react-test-renderer": "^17.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-jest": "^27.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
"react": "^16.3.0 || ^17.0.0"
|
|
}
|
|
}
|