This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
97 lines (97 loc) · 3.32 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
{
"name": "rohtvapp",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"start": "npx react-native start",
"reset-cache-start": "yarn start --reset-cache",
"clear-release-android": "npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && rm -rf ./android/app/src/main/res/drawable-* && rm -rf ./android/app/src/main/res/raw && rm -rf ./android/app/build && rm -rf ~/.gradle/caches/",
"run-dev-mode-android": "adb shell input keyevent 82",
"clear-cache-and-reinstal-modules": "./clear-cache.sh",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@prismicio/client": "^5.1.0",
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-native-community/cli-platform-android": "^6.3.0",
"@react-native-masked-view/masked-view": "^0.2.6",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"@reduxjs/toolkit": "^1.6.1",
"@sentry/react-native": "^2.6.1",
"@types/promise.allsettled": "^1.0.3",
"axios": "^0.21.1",
"base-64": "^1.0.0",
"coa": "2.0.2",
"flagged": "^2.0.1",
"fuse.js": "^6.4.6",
"html-entities": "^2.3.2",
"lodash.debounce": "^4.0.8",
"lodash.difference": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"moment": "^2.29.1",
"prismic-reactjs": "^1.3.4",
"promise.allsettled": "^1.0.4",
"react": "16.13.1",
"react-native": "npm:react-native-tvos@0.63.4-0",
"react-native-bootsplash": "^3.2.6",
"react-native-countdown-component": "^2.7.1",
"react-native-device-info": "^8.1.3",
"react-native-fast-image": "^8.3.7",
"react-native-gesture-handler": "^1.10.3",
"react-native-qrcode-svg": "^6.1.1",
"react-native-reanimated": "^1.13.3",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.7.0",
"react-native-spinkit": "^1.5.1",
"react-native-svg": "^12.2.0",
"react-navigation-backhandler": "^2.0.1",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@types/base-64": "^1.0.0",
"@types/jest": "^25.2.3",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.difference": "^4.5.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isequal": "^4.5.5",
"@types/react-native": "^0.63.2",
"@types/react-native-countdown-component": "^2.7.0",
"@types/react-redux": "^7.1.18",
"@types/react-test-renderer": "^16.9.2",
"@types/redux": "^3.6.0",
"@types/redux-saga": "^0.10.5",
"babel-jest": "^25.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^6.5.1",
"jest": "^25.1.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.13.1",
"typescript": "^4.1.0"
},
"resolutions": {
"@types/react": "^16",
"coa": "2.0.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}