forked from wouterds/react-native-tv-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.95 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": "@wouterds/react-native-tv-example",
"version": "0.0.1",
"author": "Wouter De Schuyter <[email protected]>",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:release": "react-native run-android --variant release",
"android:logs": "react-native log-android",
"ios": "react-native run-ios --simulator \"iPhone 14\"",
"ios:release": "react-native run-ios --simulator \"iPhone 14\" --configuration Release",
"ios:logs": "react-native log-ios",
"tvos": "react-native run-ios --scheme Example-tvOS --simulator \"Apple TV\"",
"tvos:release": "react-native run-ios --scheme Example-tvOS --simulator \"Apple TV\" --configuration Release",
"start": "react-native start",
"postinstall": "patch-package",
"pods": "pod-install",
"test": "jest",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"lint:ts": "tsc"
},
"dependencies": {
"@react-native-community/hooks": "^3.0.0",
"@react-native-masked-view/masked-view": "^0.2.9",
"@react-navigation/native": "^6.1.6",
"@react-navigation/native-stack": "^6.9.12",
"@react-navigation/stack": "^6.3.16",
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.3.5",
"date-fns": "^2.29.3",
"ms": "^2.1.3",
"react": "18.0.0",
"react-native": "npm:[email protected]",
"react-native-config": "^1.5.0",
"react-native-device-info": "^10.6.0",
"react-native-fast-image": "^8.6.3",
"react-native-gesture-handler": "^2.9.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-safe-area-context": "^4.5.1",
"react-native-screens": "^3.20.0",
"react-native-vector-icons": "^9.2.0",
"react-redux": "^8.0.5",
"redux-saga": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^26.0.23",
"@types/ms": "^0.7.31",
"@types/react-native": "^0.68.0",
"@types/react-native-vector-icons": "^6.4.13",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.38.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^26.6.3",
"lefthook": "^1.3.10",
"metro-react-native-babel-preset": "^0.70.3",
"patch-package": "^6.5.1",
"pod-install": "^0.1.38",
"prettier": "^2.8.7",
"react-native-flipper": "^0.125.0",
"react-test-renderer": "18.0.0",
"redux-flipper": "^2.0.2",
"typescript": "^5.0.4"
},
"resolutions": {
"@types/react": "^18"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}