forked from JohannesKlauss/react-hotkeys-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.94 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
{
"name": "react-hotkeys-hook",
"version": "3.2.0",
"repository": "https://JohannesKlauss@github.com/JohannesKlauss/react-keymap-hook.git",
"author": "Johannes Klauss",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/react-hotkeys-hook.esm.js",
"files": [
"dist",
"src"
],
"keywords": [
"react",
"hook",
"hooks",
"component",
"hotkey",
"shortcut",
"keyboard",
"shortcuts",
"keypress",
"hotkeys"
],
"license": "MIT",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "jest",
"publish": "np",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"jest": {
"testPathIgnorePatterns": [
"pkg",
".docz",
"docs"
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"hotkeys-js": "3.8.2"
},
"devDependencies": {
"@babel/core": "7.13.10",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/preset-env": "7.13.10",
"@babel/preset-react": "7.12.13",
"@babel/preset-typescript": "7.13.0",
"@testing-library/react": "11.2.5",
"@testing-library/react-hooks": "5.1.0",
"@types/jest": "26.0.20",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.2",
"@types/testing-library__react": "10.0.1",
"@types/testing-library__react-hooks": "3.4.1",
"docz": "2.3.1",
"eslint-plugin-prettier": "3.3.1",
"jest": "26.6.3",
"prettier": "2.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-test-renderer": "17.0.1",
"tsdx": "0.14.1",
"tslib": "2.1.0",
"typescript": "4.2.3"
},
"peerDependencies": {
"react": ">=16.8.1",
"react-dom": ">=16.8.1"
},
"resolutions": {
"@types/react": "17.0.3"
}
}