-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 2 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
{
"name": "rn_base",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"android:prod-debug": "npx react-native run-android --variant=prodDebug",
"android:staging-debug": "npx react-native run-android --variant=stagingDebug --appIdSuffix=staging",
"android:prod-release": "npx react-native run-android --variant=prodRelease",
"android:staging-release": "npx react-native run-android --variant=stagingRelease --appIdSuffix=staging",
"android:assemble-staging": "cd android && ./gradlew clean && ./gradlew assembleStagingRelease",
"android:assemble-prod": "cd android && ./gradlew clean && ./gradlew assembleProdRelease",
"android:bundle-staging": "cd android && ./gradlew clean && ./gradlew bundleStagingRelease",
"android:bundle-prod": "cd android && ./gradlew clean && ./gradlew bundleProdRelease",
"ios:prod-debug": "npx react-native run-ios --configuration=Debug",
"ios:staging-debug": "npx react-native run-ios --scheme=Staging --configuration=Staging.Debug",
"ios:prod-release": "npx react-native run-ios --configuration=Release",
"ios:staging-release": "npx react-native run-ios --scheme=Staging --configuration=Staging.Release"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.14",
"@reduxjs/toolkit": "^1.7.1",
"react": "17.0.2",
"react-native": "0.66.4",
"react-native-bootsplash": "^4.0.2",
"react-native-config": "^1.4.5",
"react-redux": "^7.2.6",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}