redux-devtools/packages/react-dock/package.json
renovate[bot] 9a77585dd7
chore(deps): update all non-major dependencies (#758)
* chore(deps): update all non-major dependencies

* Prettify

* Combine versions

* Downgrade knex

* Engine changes

* Only LTS

* Greater than

* Combine lodash

* Fix type

* Fix type

* Update snapshots

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-08-26 09:52:23 -04:00

67 lines
1.9 KiB
JSON

{
"name": "react-dock",
"version": "0.4.0",
"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/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/reduxjs/redux-devtools.git"
},
"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",
"clean": "rimraf lib",
"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": {
"@types/prop-types": "^15.7.4",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.6",
"@types/react": "^16.14.14",
"@types/react-dom": "^16.9.14",
"@types/react-test-renderer": "^16.9.5",
"@types/styled-components": "^5.1.13",
"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",
"styled-components": "^5.3.1"
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17.0.0",
"react": "^16.3.0 || ^17.0.0"
}
}