mirror of
https://github.com/ARMSX2/ARMSX1.git
synced 2026-08-24 16:53:35 -07:00
- 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.
19 lines
593 B
JSON
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"
|
|
}
|
|
}
|