-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.53 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.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
{
"name": "wifiexample",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"emuladores": "emus",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"ios8": "react-native run-ios --simulator=\"iPhone 8\"",
"iosse": "react-native run-ios --simulator=\"iPhone SE\"",
"iosplus": "react-native run-ios --simulator=\"iPhone 8 Plus\"",
"iospro": "react-native run-ios --simulator=\"iPhone 11 Pro\"",
"iosmax": "react-native run-ios --simulator=\"iPhone 11 Pro Max\"",
"reset": "rm -rf node_modules ios/build ios/Pod ios/Pods android/build android/.gradle package-lock.json",
"all": "npm run reset && npm i && cd ios && pod install && cd .. && npm run ios",
"allandroid": "npm run reset && npm i && npm run android",
"release": "react-native run-android --variant=release",
"postinstall": "npx jetify -r",
"generateapk": "cd android && ./gradlew assembleRelease",
"generateapkwindows": "cd android && .\\gradlew assembleRelease"
},
"dependencies": {
"react": "16.13.1",
"react-native": "0.63.2",
"react-native-android-wifi": "^0.0.41"
},
"devDependencies": {
"@babel/core": "^7.11.5",
"@babel/runtime": "^7.11.2",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.3.0",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"metro-react-native-babel-preset": "^0.63.0",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
}
}