-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 3.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 3.63 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "VodQAReactNative",
"version": "1.2.10",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"start": "react-native start",
"start:reset": "react-native start --reset-cache",
"clean": "rm -rf node_modules && rm -rf ios/Pods && rm -rf ios/build && rm -rf android/build && rm -rf android/app/build && npm install && cd ios && pod install",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --watchAll=false --ci",
"build:android:debug": "cd android && ./gradlew assembleDebug",
"build:android:release": "cd android && ./gradlew assembleRelease",
"build:android:clean": "cd android && ./gradlew clean",
"build:ios:debug": "cd ios && xcodebuild -workspace VodQAReactNative.xcworkspace -scheme VodQAReactNative -configuration Debug -destination 'generic/platform=iOS' -archivePath build/VodQAReactNative.xcarchive archive CODE_SIGNING_ALLOWED=NO",
"build:ios:release": "cd ios && xcodebuild -workspace VodQAReactNative.xcworkspace -scheme VodQAReactNative -configuration Release -destination 'generic/platform=iOS' -archivePath build/VodQAReactNative.xcarchive archive CODE_SIGNING_ALLOWED=NO",
"build:ios:simulator:debug": "cd ios && xcodebuild -workspace VodQAReactNative.xcworkspace -scheme VodQAReactNative -configuration Debug -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -derivedDataPath build/DerivedData CODE_SIGNING_ALLOWED=NO && cd build/DerivedData/Build/Products/Debug-iphonesimulator && zip -r ../../../VodQAReactNative-simulator-debug.zip VodQAReactNative.app",
"build:ios:simulator:release": "cd ios && xcodebuild -workspace VodQAReactNative.xcworkspace -scheme VodQAReactNative -configuration Release -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -derivedDataPath build/DerivedData CODE_SIGNING_ALLOWED=NO && cd build/DerivedData/Build/Products/Release-iphonesimulator && zip -r ../../../VodQAReactNative-simulator-release.zip VodQAReactNative.app",
"build:ios:clean": "cd ios && xcodebuild -workspace VodQAReactNative.xcworkspace -scheme VodQAReactNative clean"
},
"dependencies": {
"@react-native-community/slider": "^5.1.1",
"@react-native-picker/picker": "^2.8.1",
"@react-native/new-app-screen": "0.81.0",
"@react-navigation/native": "^7.1.22",
"@react-navigation/stack": "^7.6.4",
"prop-types": "^15.8.1",
"react": "19.1.0",
"react-native": "0.81.0",
"react-native-gesture-handler": "^2.29.1",
"react-native-image-viewing": "^0.2.2",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.18.0",
"react-native-webview": "^13.10.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "20.0.2",
"@react-native-community/cli-platform-android": "20.0.2",
"@react-native-community/cli-platform-ios": "20.0.2",
"@react-native/babel-preset": "0.81.0",
"@react-native/eslint-config": "0.81.0",
"@react-native/metro-config": "0.81.0",
"@react-native/typescript-config": "0.81.0",
"@types/jest": "^29.5.13",
"@types/react": "^19.1.0",
"@types/react-test-renderer": "^19.1.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"jest-environment-jsdom": "^30.2.0",
"prettier": "3.7.3",
"react-test-renderer": "19.1.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
}
}