-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.4 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
{
"name": "react-native-hotkeys",
"version": "0.5.8",
"description": "Hotkeys support for React Native (iOS and web)",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "expo-module clean",
"lint": "expo-module lint",
"test": "expo-module test",
"prepare": "expo-module prepare",
"prepublishOnly": "expo-module prepublishOnly && yarn build",
"expo-module": "expo-module",
"open:ios": "open -a \"Xcode\" example/ios",
"open:android": "open -a \"Android Studio\" example/android"
},
"keywords": [
"react-native",
"expo",
"react-native-hotkeys",
"ReactNativeKeys"
],
"private": false,
"repository": "https://github.com/robertherber/kingstinct-react-native-keys",
"bugs": {
"url": "https://github.com/robertherber/kingstinct-react-native-keys/issues"
},
"author": "Robert Herber <[email protected]> (https://github.com/robertherber)",
"license": "MIT",
"homepage": "https://github.com/robertherber/kingstinct-react-native-keys#readme",
"dependencies": {
"ts-key-enum": "^2.0.12"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@evilmartians/lefthook": "^1.2.1",
"@graphql-eslint/eslint-plugin": "^3.13.1",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"airbnb": "^0.0.2",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-kingstinct": "^5.1.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-comment-length": "^0.9.2",
"eslint-plugin-functional": "^5.0.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-yml": "^1.2.0",
"expo": "^48.0.5",
"expo-module-scripts": "^3.0.3",
"expo-modules-core": "^1.0.3",
"graphql": "^16.6.0",
"jest": "^29.3.1",
"react-native": "^0.71.4",
"typescript": "^4.9.3"
},
"peerDependencies": {
"expo": "*",
"react": "*",
"react-dom": "*",
"react-native": "*"
}
}