2020-08-16 00:27:22 +03:00
|
|
|
{
|
|
|
|
"name": "react-dock",
|
2022-01-25 03:26:20 +03:00
|
|
|
"version": "0.5.1",
|
2020-08-16 00:27:22 +03:00
|
|
|
"description": "Resizable dockable react component",
|
2020-08-24 07:37:43 +03:00
|
|
|
"keywords": [
|
|
|
|
"react",
|
|
|
|
"reactjs",
|
|
|
|
"dock",
|
|
|
|
"sidebar"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/reduxjs/redux-devtools",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools/issues"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
2020-08-24 07:37:43 +03:00
|
|
|
"license": "MIT",
|
|
|
|
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
|
2020-08-16 00:27:22 +03:00
|
|
|
"files": [
|
2022-01-24 05:11:46 +03:00
|
|
|
"lib",
|
2020-08-16 00:27:22 +03:00
|
|
|
"src"
|
|
|
|
],
|
2022-01-24 05:11:46 +03:00
|
|
|
"main": "lib/cjs/index.js",
|
|
|
|
"module": "lib/esm/index.js",
|
|
|
|
"types": "lib/types/index.d.ts",
|
|
|
|
"sideEffects": false,
|
2020-08-16 00:27:22 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/reduxjs/redux-devtools.git"
|
|
|
|
},
|
2020-08-24 07:37:43 +03:00
|
|
|
"scripts": {
|
2022-01-24 05:11:46 +03:00
|
|
|
"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",
|
2020-08-24 07:37:43 +03:00
|
|
|
"test": "jest",
|
|
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
|
|
"type-check": "tsc --noEmit",
|
2021-09-19 02:47:03 +03:00
|
|
|
"prepack": "yarn run clean && yarn run build",
|
|
|
|
"prepublish": "yarn run type-check && yarn run lint && yarn run test"
|
2020-08-24 07:37:43 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-02-28 08:12:36 +03:00
|
|
|
"@babel/runtime": "^7.17.2",
|
|
|
|
"@types/lodash": "^4.14.179",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/prop-types": "^15.7.4",
|
2020-08-24 07:37:43 +03:00
|
|
|
"lodash.debounce": "^4.0.8",
|
2022-01-23 02:00:06 +03:00
|
|
|
"prop-types": "^15.8.1"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-28 08:12:36 +03:00
|
|
|
"@babel/cli": "^7.17.6",
|
|
|
|
"@babel/core": "^7.17.5",
|
2022-02-06 04:20:56 +03:00
|
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.17.0",
|
2022-01-23 02:00:06 +03:00
|
|
|
"@babel/preset-env": "^7.16.11",
|
2022-01-03 08:10:29 +03:00
|
|
|
"@babel/preset-react": "^7.16.7",
|
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
2022-02-28 08:12:36 +03:00
|
|
|
"@types/jest": "^27.4.1",
|
2020-08-24 07:37:43 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2022-02-06 04:20:56 +03:00
|
|
|
"@types/react": "^17.0.39",
|
2021-10-22 19:11:42 +03:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2022-02-28 08:12:36 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.12.1",
|
|
|
|
"@typescript-eslint/parser": "^5.12.1",
|
|
|
|
"eslint": "^8.10.0",
|
|
|
|
"eslint-config-prettier": "^8.4.0",
|
|
|
|
"eslint-plugin-jest": "^26.1.1",
|
|
|
|
"eslint-plugin-react": "~7.28.0",
|
2021-11-10 17:32:42 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2022-02-28 08:12:36 +03:00
|
|
|
"jest": "^27.5.1",
|
2021-10-22 19:11:42 +03:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-test-renderer": "^17.0.2",
|
2021-09-19 02:47:03 +03:00
|
|
|
"rimraf": "^3.0.2",
|
2022-01-23 02:00:06 +03:00
|
|
|
"ts-jest": "^27.1.3",
|
|
|
|
"typescript": "~4.5.5"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2021-03-06 18:31:16 +03:00
|
|
|
"@types/react": "^16.3.0 || ^17.0.0",
|
|
|
|
"react": "^16.3.0 || ^17.0.0"
|
2020-08-16 00:27:22 +03:00
|
|
|
}
|
|
|
|
}
|