forked from streamich/react-use
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) Β· 2.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "react-use",
"version": "7.3.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": "echo hmm...",
"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": {
"nano-css": "^5.1.0",
"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": {
"@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/react": "16.8.12",
"babel-core": "6.26.3",
"fork-ts-checker-webpack-plugin": "1.0.1",
"gh-pages": "2.0.1",
"keyboardjs": "2.5.1",
"markdown-loader": "5.0.0",
"react": "16.8.4",
"react-dom": "16.8.4",
"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.1"
},
"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"
]
}
}