react-use/package.json
2019-04-12 18:48:48 +10:00

111 lines
2.8 KiB
JSON

{
"name": "react-use",
"version": "8.1.1",
"description": "Collection of React Hooks",
"main": "lib/index.js",
"module": "esm/index.js",
"files": [
"lib/",
"esm/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"start": "yarn storybook",
"test": "jest",
"test:watch": "jest --watch",
"build:cjs": "tsc",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn build:cjs && yarn build:es",
"clean": "rimraf lib storybook-static esm",
"storybook": "start-storybook -p 6008",
"storybook:build": "build-storybook",
"storybook:upload": "gh-pages -d storybook-static",
"storybook:clean": "rimraf storybook-static",
"release": "semantic-release"
},
"author": "@streamich",
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/streamich/react-use"
},
"bugs": {
"url": "https://github.com/streamich/react-use/issues"
},
"homepage": "https://github.com/streamich/react-use#readme",
"dependencies": {
"copy-to-clipboard": "^3.1.0",
"nano-css": "^5.1.0",
"react-fast-compare": "^2.0.4",
"react-wait": "^0.3.0",
"screenfull": "^4.1.0",
"throttle-debounce": "^2.0.1",
"ts-easing": "^0.2.0"
},
"peerDependencies": {
"keyboardjs": "*",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rebound": "*"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "7.4.3",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@semantic-release/changelog": "3.0.2",
"@semantic-release/git": "7.0.8",
"@semantic-release/npm": "5.1.4",
"@storybook/addon-actions": "5.0.6",
"@storybook/addon-knobs": "5.0.6",
"@storybook/addon-notes": "5.0.6",
"@storybook/addon-options": "5.0.6",
"@storybook/react": "5.0.6",
"@types/jest": "24.0.11",
"@types/react": "16.8.13",
"babel-core": "6.26.3",
"babel-loader": "^8.0.5",
"fork-ts-checker-webpack-plugin": "1.0.2",
"gh-pages": "2.0.1",
"jest": "24.7.1",
"keyboardjs": "2.5.1",
"markdown-loader": "5.0.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-hooks-testing-library": "0.4.0",
"react-spring": "6.1.10",
"rebound": "0.1.0",
"rimraf": "2.6.3",
"rxjs": "6.4.0",
"semantic-release": "15.13.3",
"ts-loader": "5.3.3",
"ts-node": "8.0.3",
"typescript": "3.4.3"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": "rc"
}
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}