Files
ARMSX1/package.json
T
moonpower 30d4e57a3c Add custom font and configure React Native project settings
- Added the Pixel Cyr font to the mobile assets directory.
- Created a new React Native configuration file to specify project settings, including Android source directory, app name, and package name.
- Configured asset linking for the mobile assets.
2025-11-23 13:19:06 +03:00

19 lines
593 B
JSON

{
"name": "armsx-mobile",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-native start --projectRoot mobile --host 0.0.0.0 --port 8081",
"ios": "react-native run-ios --project-path ios/HostApp",
"bundle:ios": "react-native bundle --platform ios --dev false --entry-file mobile/index.js --bundle-output ios/HostApp/main.jsbundle --assets-dest ios/HostApp"
},
"dependencies": {
"@react-native-community/cli": "^20.0.2",
"react": "18.2.0",
"react-native": "0.76.0"
},
"devDependencies": {
"@react-native/metro-config": "0.76.0"
}
}