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": {
|
|
|
|
"start": "webpack-dev-server",
|
|
|
|
"stats": "webpack --profile --json > stats.json",
|
|
|
|
"build:demo": "NODE_ENV=production webpack -p",
|
|
|
|
"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",
|
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",
|
|
|
|
"lint:fix": "eslint . --ext .ts,.tsx --fix",
|
|
|
|
"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": {
|
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": {
|
2020-08-24 07:37:43 +03:00
|
|
|
"@types/lodash.debounce": "^4.0.6",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/react": "^16.14.14",
|
|
|
|
"@types/react-dom": "^16.9.14",
|
2021-06-19 04:47:26 +03:00
|
|
|
"@types/react-test-renderer": "^16.9.5",
|
2021-08-26 16:52:23 +03:00
|
|
|
"@types/styled-components": "^5.1.13",
|
2021-06-19 04:47:26 +03:00
|
|
|
"react": "^16.14.0",
|
|
|
|
"react-bootstrap": "^1.6.1",
|
|
|
|
"react-dom": "^16.14.0",
|
|
|
|
"react-hot-loader": "^4.13.0",
|
|
|
|
"react-icons": "^3.11.0",
|
|
|
|
"react-test-renderer": "^16.14.0",
|
2021-08-26 16:52:23 +03:00
|
|
|
"styled-components": "^5.3.1"
|
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
|
|
|
}
|
|
|
|
}
|