2020-08-16 00:27:22 +03:00
|
|
|
{
|
|
|
|
"name": "react-dock",
|
2021-03-06 18:38:32 +03:00
|
|
|
"version": "0.4.0",
|
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-10-21 07:26:47 +03:00
|
|
|
"@types/lodash": "^4.14.176",
|
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-09-21 00:49:13 +03:00
|
|
|
"@babel/cli": "^7.15.7",
|
2021-10-11 07:16:48 +03:00
|
|
|
"@babel/core": "^7.15.8",
|
|
|
|
"@babel/preset-env": "^7.15.8",
|
2021-09-19 02:47:03 +03:00
|
|
|
"@babel/preset-react": "^7.14.5",
|
|
|
|
"@babel/preset-typescript": "^7.15.0",
|
2021-10-04 07:29:49 +03:00
|
|
|
"@types/jest": "^27.0.2",
|
2020-08-24 07:37:43 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2021-10-25 03:42:08 +03:00
|
|
|
"@types/react": "^17.0.32",
|
2021-10-22 19:11:42 +03:00
|
|
|
"@types/react-test-renderer": "^17.0.1",
|
2021-10-21 22:08:35 +03:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
|
|
"@typescript-eslint/parser": "^5.1.0",
|
2021-09-19 02:47:03 +03:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-10-21 07:26:47 +03:00
|
|
|
"eslint-plugin-jest": "^25.2.2",
|
2021-10-04 07:29:49 +03:00
|
|
|
"eslint-plugin-react": "^7.26.1",
|
2021-10-21 07:26:47 +03:00
|
|
|
"jest": "^27.3.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",
|
2021-10-21 07:26:47 +03:00
|
|
|
"ts-jest": "^27.0.7",
|
|
|
|
"typescript": "~4.4.4"
|
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
|
|
|
}
|
|
|
|
}
|