-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.53 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.53 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "starter",
"version": "0.0.1",
"private": true,
"scripts": {
"build-android": "npm run bundle-android; node support-files/record-start-time.js; cd android; ./gradlew assemblerelease; cd ..; node support-files/record-end-time.js; npx ts-node support-files/apk-renamer.js; node support-files/open-file-location.js",
"bundle-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",
"bundle-ios": "npx react-native bundle --entry-file ./index.js --platform ios --bundle-output ios/main.jsbundle --assets-dest ios",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint-fix": "npm run lint -- --fix",
"start": "npx react-native start",
"test": "jest"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.15.6",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/push-notification-ios": "1.9.0",
"@react-native-firebase/app": "12.6.0",
"@react-native-firebase/crashlytics": "12.6.0",
"@react-native-firebase/messaging": "12.6.0",
"@react-navigation/native": "6.0.2",
"@react-navigation/stack": "6.0.6",
"react": "17.0.2",
"react-native": "0.66.2",
"react-native-gesture-handler": "1.10.3",
"react-native-image-crop-picker": "0.36.2",
"react-native-push-notification": "7.4.0",
"react-native-reanimated": "2.3.0-beta.3",
"react-native-safe-area-context": "3.3.0",
"react-native-screens": "3.5.0",
"react-native-snackbar": "2.4.0",
"react-native-toast-message": "1.4.9",
"react-native-webview": "11.13.0"
},
"devDependencies": {
"@babel/core": "7.12.9",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "2.0.0",
"@types/jest": "25.2.3",
"@types/react-native": "0.64.13",
"@types/react-native-push-notification": "7.3.1",
"@types/react-test-renderer": "17.0.1",
"@typescript-eslint/eslint-plugin": "4.29.0",
"babel-jest": "26.6.3",
"babel-plugin-module-resolver": "4.1.0",
"eslint": "7.21.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-native": "3.11.0",
"jest": "26.6.3",
"metro-react-native-babel-preset": "0.66.2",
"open": "8.0.3",
"react-test-renderer": "17.0.2",
"typescript": "4.3.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}