forked from JohannesKlauss/react-hotkeys-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.05 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
{
"name": "react-hotkeys-hook",
"version": "2.1.3",
"repository": "https://[email protected]/JohannesKlauss/react-keymap-hook.git",
"author": "Johannes Klauss",
"keywords": [
"react",
"hook",
"hooks",
"component",
"hotkey",
"shortcut",
"keyboard",
"shortcuts",
"keypress",
"hotkeys"
],
"license": "MIT",
"scripts": {
"build": "pika build",
"test": "jest",
"publish": "pika publish",
"docz:dev": "docz dev",
"docz:build": "docz build",
"version": "npm run build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"jest": {
"testPathIgnorePatterns": [
"pkg",
".docz",
"docs"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"dependencies": {
"hotkeys-js": "3.7.6"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@emotion/core": "10.0.28",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-types": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@testing-library/react": "10.0.4",
"@testing-library/react-hooks": "3.2.1",
"@types/jest": "25.2.1",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/testing-library__react": "10.0.1",
"@types/testing-library__react-hooks": "3.2.0",
"docz": "2.3.1",
"emotion-theming": "10.0.27",
"gatsby-plugin-emotion": "4.2.2",
"jest": "26.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.13.1",
"typescript": "3.8.3"
},
"peerDependencies": {
"react": ">=16.8.1"
},
"resolutions": {
"@types/react": "16.9.34"
}
}