-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.71 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.71 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
{
"name": "multilanguage",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "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 && rimraf android/app/src/main/res/drawable-* && rimraf android/app/src/main/res/raw",
"apk-debug": "npm run clean && npm run build && cd android && ./gradlew assembleDebug",
"apk": "npm run clean && npm run build && cd android && ./gradlew assembleRelease",
"release": "npm run clean && npm run build && cd android && ./gradlew bundleRelease",
"clean": "cd android && ./gradlew clean",
"rebuild": "react-native bundle --platform android --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --dev false --reset-cache --assets-dest android/app/src/main/res/",
"android": "npm run clean && react-native run-android",
"ios": "npm run clean && react-native run-ios --simulator=\"iPhone X\"",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"clean:ios": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache verify && npm install && npm start -- --reset-cache"
},
"dependencies": {
"react": "16.11.0",
"react-native": "0.62.2",
"react-redux": "^7.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@react-native-community/eslint-config": "^1.1.0",
"babel-jest": "^25.3.0",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"metro-react-native-babel-preset": "^0.59.0",
"react-test-renderer": "16.11.0"
},
"jest": {
"preset": "react-native"
}
}