-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 2.36 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
{
"name": "EasyApp",
"version": "1.0.4",
"private": true,
"scripts": {
"start": "react-native start",
"lint": "eslint .",
"adr": "react-native run-android",
"ios": "react-native run-ios",
"adr-build": "react-native bundle --entry-file='index.js' --bundle-output='./android/app/src/main/assets/index.android.bundle' --dev=false --platform='android'",
"apk": "cd android && ./gradlew assembleRelease && cd app/build/outputs/apk/release && open . && adb install -r app-release.apk",
"studio": "open android -a /Applications/Android\\ Studio.app",
"ios-build": "react-native bundle --entry-file='index.js' --bundle-output='./index.jsbundle' --dev=false --platform='ios'",
"zip-bundle-ios": "mkdir bundle && react-native bundle --entry-file index.js --bundle-output bundle/index.jsbundle --platform ios --assets-dest bundle --dev false && zip jsBundleIos.zip -r bundle && rm -rf bundle",
"zip-bundle-android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output index.android.bundle && zip jsBundleAdr.zip index.android.bundle && rm index.android.bundle",
"xcode": "open ios/EasyApp.xcworkspace -a /Applications/Xcode.app"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.7",
"@react-navigation/bottom-tabs": "^5.9.2",
"@react-navigation/native": "^5.7.6",
"@react-navigation/stack": "^5.9.3",
"events": "^3.2.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-native": "0.64.0",
"react-native-debug-tool": "^1.1.6",
"react-native-device-info": "^6.2.0",
"react-native-easy-app": "^1.7.26",
"react-native-gesture-handler": "^1.8.0",
"react-native-image-crop-picker": "^0.35.1",
"react-native-reanimated": "^1.13.1",
"react-native-root-toast": "3.0.0",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.11.0",
"react-native-webview": "^11.3.2"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/runtime": "^7.13.10",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.65.2",
"react-test-renderer": "17.0.1"
},
"jest": {
"preset": "react-native"
}
}