-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.98 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.98 KB
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
{
"name": "mpc-hc-remote-control",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint .",
"rn-link": "react-native link",
"apk": "cd android && ./gradlew assembleRelease && cd ..",
"android-key": "cd ./android/app/ && keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000",
"clean": "rm -rf node_modules/ && rm yarn.lock && yarn cache clean && yarn install",
"clean-android": "cd android && ./gradlew clean && cd ..",
"clean-all": "yarn clean && yarn clean-android",
"android": "react-native run-android",
"devmenu": "adb shell input keyevent 82"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/slider": "^4.2.4",
"@react-navigation/native": "^6.0.11",
"@react-navigation/native-stack": "^6.7.0",
"axios": "^0.27.2",
"react": "18.2.0",
"react-native": "0.69.2",
"react-native-bootsplash": "^4.2.3",
"react-native-fast-image": "^8.5.11",
"react-native-gesture-handler": "^2.5.0",
"react-native-linear-gradient": "^2.6.2",
"react-native-modal": "^13.0.1",
"react-native-onboarding-swiper": "^1.2.0",
"react-native-reanimated": "^2.9.1",
"react-native-safe-area-context": "^4.3.1",
"react-native-screens": "^3.15.0",
"react-native-svg": "^12.4.0",
"react-native-webview": "^11.22.7",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-axios-middleware": "^4.0.1",
"redux-persist": "^6.0.0",
"twrnc": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/runtime": "^7.18.9",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "0.70.3",
"react-test-renderer": "18.2.0"
},
"jest": {
"preset": "react-native"
}
}