2020-08-16 00:27:22 +03:00
|
|
|
{
|
|
|
|
"name": "react-dock",
|
2021-11-06 20:44:49 +03:00
|
|
|
"version": "0.4.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": [
|
|
|
|
"lib",
|
|
|
|
"src"
|
|
|
|
],
|
2020-08-24 07:37:43 +03:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
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": {
|
2021-09-19 02:47:03 +03:00
|
|
|
"build": "yarn run build:types && yarn run build:js",
|
2020-08-24 07:37:43 +03:00
|
|
|
"build:types": "tsc --emitDeclarationOnly",
|
|
|
|
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
|
2020-08-26 15:54:44 +03:00
|
|
|
"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": {
|
2021-11-22 07:02:21 +03:00
|
|
|
"@types/lodash": "^4.14.177",
|
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",
|
|
|
|
"prop-types": "^15.7.2"
|
2020-08-16 00:27:22 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/cli": "^7.16.0",
|
|
|
|
"@babel/core": "^7.16.0",
|
2021-11-22 07:02:21 +03:00
|
|
|
"@babel/preset-env": "^7.16.4",
|
2021-11-01 16:59:32 +03:00
|
|
|
"@babel/preset-react": "^7.16.0",
|
|
|
|
"@babel/preset-typescript": "^7.16.0",
|
2021-11-22 07:02:21 +03:00
|
|
|
"@types/jest": "^27.0.3",
|
2020-08-24 07:37:43 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2021-12-04 22:04:59 +03:00
|
|
|
"@types/react": "^17.0.37",
|
2021-10-22 19:11:42 +03:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2021-12-08 07:11:07 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
|
|
"@typescript-eslint/parser": "^5.6.0",
|
|
|
|
"eslint": "^8.4.1",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-12-04 22:04:59 +03:00
|
|
|
"eslint-plugin-jest": "^25.3.0",
|
2021-11-22 07:02:21 +03:00
|
|
|
"eslint-plugin-react": "^7.27.1",
|
2021-11-10 17:32:42 +03:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2021-12-04 22:04:59 +03:00
|
|
|
"jest": "^27.4.3",
|
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",
|
2021-12-08 07:11:07 +03:00
|
|
|
"ts-jest": "^27.1.0",
|
2021-12-08 08:02:22 +03:00
|
|
|
"typescript": "~4.5.2"
|
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
|
|
|
}
|
|
|
|
}
|