-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 817 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"main": "index.js",
"scripts": {
"start": "react-native start --port=8080",
"bundle-home": "NODE_ENV=production react-native bundle --platform android --dev false --entry-file pages/home/index.js --bundle-output /tmp/index.android.bundle --reset-cache",
"bundle-android": "NODE_ENV=production react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --reset-cache"
},
"dependencies": {
"react": "~16.9.0",
"react-dom": "~16.9.0",
"react-native": "~0.61.5"
},
"devDependencies": {
"@babel/core": "~7.9.0",
"babel-jest": "~25.2.6",
"jest": "~25.2.6",
"line-reader": "^0.4.0",
"react-test-renderer": "~16.9.0"
},
"jest": {
"preset": "react-native"
},
"private": true
}