-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.16 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.16 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
{
"name": "react-native-image-code-scanner-example",
"version": "1.0.0",
"private": true,
"main": "App.tsx",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "eslint .",
"setup": "expo install",
"prebuild": "expo prebuild",
"prebuild:clean": "expo prebuild --clean",
"build:android": "expo prebuild --platform android && cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug",
"build:ios": "expo prebuild --clean --platform ios && cd ios && pod install --repo-update && xcodebuild -workspace ImageCodeScannerExample.xcworkspace -scheme ImageCodeScannerExample -configuration Debug -sdk iphonesimulator -derivedDataPath build"
},
"dependencies": {
"expo": "~52.0.0",
"expo-image-picker": "~16.0.3",
"expo-status-bar": "~2.0.1",
"react": "18.3.1",
"react-native": "0.76.9",
"react-native-image-code-scanner": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.3.12",
"eslint": "^8.56.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}