forked from neuland-ingolstadt/neuland.app-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates project structure and adds news page (neuland-ingolstadt#57)
Co-authored-by: Philipp Opheys <[email protected]>
- Loading branch information
1 parent
416fb31
commit b377201
Showing
99 changed files
with
784 additions
and
402 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,101 +1,102 @@ | ||
{ | ||
"version": "0.4.2", | ||
"name": "neuland", | ||
"main": "expo-router/entry", | ||
"homepage": "https://github.com/neuland-ingolstadt/neuland.app-native", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"start": "expo start -c", | ||
"tunnel": "expo start -c --tunnel", | ||
"android": "expo run:android", | ||
"ios": "expo run:ios", | ||
"web": "expo start --web", | ||
"build:android": "eas build --platform android --local", | ||
"build:ios": "expo prebuild --platform ios && xcodebuild archive -workspace ios/NeulandNext.xcworkspace -scheme NeulandNext", | ||
"build:all": "yarn build:ios && yarn build:android", | ||
"format": "prettier --write .", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix .", | ||
"postinstall": "husky install" | ||
}, | ||
"dependencies": { | ||
"@expo/vector-icons": "^13.0.0", | ||
"@react-native-async-storage/async-storage": "1.18.2", | ||
"@react-native-community/datetimepicker": "7.2.0", | ||
"@react-navigation/native-stack": "6.9.13", | ||
"@types/color": "^3.0.5", | ||
"color": "^4.2.3", | ||
"expo": "^49.0.16", | ||
"expo-blur": "~12.4.1", | ||
"expo-clipboard": "~4.3.0", | ||
"expo-constants": "~14.4.2", | ||
"expo-haptics": "~12.4.0", | ||
"expo-linear-gradient": "~12.3.0", | ||
"expo-linking": "~5.0.2", | ||
"expo-local-authentication": "~13.4.1", | ||
"expo-localization": "~14.3.0", | ||
"expo-router": "^3.1.2", | ||
"expo-secure-store": "~12.3.1", | ||
"expo-sharing": "11.7.0", | ||
"expo-splash-screen": "~0.20.5", | ||
"expo-status-bar": "^1.6.0", | ||
"i18next": "^23.6.0", | ||
"moment": "^2.29.4", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-i18next": "^13.3.1", | ||
"react-native": "0.72.6", | ||
"react-native-big-calendar": "^4.7.0", | ||
"react-native-collapsible": "^1.6.1", | ||
"react-native-draggable-flatlist": "^4.0.1", | ||
"react-native-gesture-handler": "~2.12.0", | ||
"react-native-maps": "1.7.1", | ||
"react-native-onboarding-swiper": "https://github.com/neuland-ingolstadt/react-native-onboarding-swiper.git", | ||
"react-native-reanimated": "3.3.0", | ||
"react-native-root-toast": "^3.4.1", | ||
"react-native-safe-area-context": "4.6.3", | ||
"react-native-screens": "~3.22.0", | ||
"react-native-select-dropdown": "^3.3.4", | ||
"react-native-shimmer-placeholder": "^2.0.9", | ||
"react-native-svg": "^13.14.0", | ||
"react-native-view-shot": "^3.8.0", | ||
"react-native-webview": "13.2.2", | ||
"sanitize-html": "^2.11.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0-0", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-0", | ||
"@babel/plugin-proposal-optional-chaining": "^7.0.0-0", | ||
"@babel/plugin-transform-arrow-functions": "^7.0.0-0", | ||
"@babel/plugin-transform-shorthand-properties": "^7.0.0-0", | ||
"@babel/plugin-transform-template-literals": "^7.0.0-0", | ||
"@expo/ngrok": "^4.1.0", | ||
"@trivago/prettier-plugin-sort-imports": "^4.2.1", | ||
"@types/react": "~18.2.14", | ||
"@types/sanitize-html": "^2", | ||
"@typescript-eslint/eslint-plugin": "^6.6.0", | ||
"@typescript-eslint/parser": "^6.10.0", | ||
"babel-plugin-formatjs": "^10.5.7", | ||
"eslint": "^8.53.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-config-standard-with-typescript": "^39.1.1", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-n": "^16.3.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-react": "latest", | ||
"eslint-plugin-react-native": "^4.1.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": ">=15", | ||
"prettier": "3.0.3", | ||
"typescript": "^5.2.2" | ||
}, | ||
"lint-staged": { | ||
"**/*.{js,jsx,ts,tsx,json,yml}": [ | ||
"npx prettier --write" | ||
], | ||
"*.{js,jsx,ts,tsx}": [ | ||
"npx eslint --fix" | ||
] | ||
} | ||
"version": "0.4.3", | ||
"name": "neuland", | ||
"main": "expo-router/entry", | ||
"homepage": "https://github.com/neuland-ingolstadt/neuland.app-native", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"start": "expo start -c", | ||
"tunnel": "expo start -c --tunnel", | ||
"android": "expo run:android", | ||
"ios": "expo run:ios", | ||
"web": "expo start --web", | ||
"build:android": "eas build --platform android --local", | ||
"build:ios": "expo prebuild --platform ios && xcodebuild archive -workspace ios/NeulandNext.xcworkspace -scheme NeulandNext", | ||
"build:all": "yarn build:ios && yarn build:android", | ||
"format": "prettier --write .", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix .", | ||
"postinstall": "husky install" | ||
}, | ||
"dependencies": { | ||
"@expo/vector-icons": "^13.0.0", | ||
"@react-native-async-storage/async-storage": "1.18.2", | ||
"@react-native-community/datetimepicker": "7.2.0", | ||
"@react-navigation/native-stack": "6.9.13", | ||
"@types/color": "^3.0.5", | ||
"color": "^4.2.3", | ||
"expo": "^49.0.16", | ||
"expo-blur": "~12.4.1", | ||
"expo-clipboard": "~4.3.0", | ||
"expo-constants": "~14.4.2", | ||
"expo-haptics": "~12.4.0", | ||
"expo-linear-gradient": "~12.3.0", | ||
"expo-linking": "~5.0.2", | ||
"expo-local-authentication": "~13.4.1", | ||
"expo-localization": "~14.3.0", | ||
"expo-router": "^3.1.2", | ||
"expo-secure-store": "~12.3.1", | ||
"expo-sharing": "11.7.0", | ||
"expo-splash-screen": "~0.20.5", | ||
"expo-status-bar": "^1.6.0", | ||
"expo-updates": "~0.18.17", | ||
"i18next": "^23.6.0", | ||
"moment": "^2.29.4", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"react-i18next": "^13.3.1", | ||
"react-native": "0.72.6", | ||
"react-native-big-calendar": "^4.7.0", | ||
"react-native-collapsible": "^1.6.1", | ||
"react-native-draggable-flatlist": "^4.0.1", | ||
"react-native-gesture-handler": "~2.12.0", | ||
"react-native-maps": "1.7.1", | ||
"react-native-onboarding-swiper": "https://github.com/neuland-ingolstadt/react-native-onboarding-swiper.git", | ||
"react-native-reanimated": "3.3.0", | ||
"react-native-root-toast": "^3.4.1", | ||
"react-native-safe-area-context": "4.6.3", | ||
"react-native-screens": "~3.22.0", | ||
"react-native-select-dropdown": "^3.3.4", | ||
"react-native-shimmer-placeholder": "^2.0.9", | ||
"react-native-svg": "^13.14.0", | ||
"react-native-view-shot": "^3.8.0", | ||
"react-native-webview": "13.2.2", | ||
"sanitize-html": "^2.11.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.0.0-0", | ||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0-0", | ||
"@babel/plugin-proposal-optional-chaining": "^7.0.0-0", | ||
"@babel/plugin-transform-arrow-functions": "^7.0.0-0", | ||
"@babel/plugin-transform-shorthand-properties": "^7.0.0-0", | ||
"@babel/plugin-transform-template-literals": "^7.0.0-0", | ||
"@expo/ngrok": "^4.1.0", | ||
"@trivago/prettier-plugin-sort-imports": "^4.2.1", | ||
"@types/react": "~18.2.14", | ||
"@types/sanitize-html": "^2", | ||
"@typescript-eslint/eslint-plugin": "^6.6.0", | ||
"@typescript-eslint/parser": "^6.10.0", | ||
"babel-plugin-formatjs": "^10.5.7", | ||
"eslint": "^8.53.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-config-standard-with-typescript": "^39.1.1", | ||
"eslint-plugin-import": "^2.29.0", | ||
"eslint-plugin-n": "^16.3.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-react": "latest", | ||
"eslint-plugin-react-native": "^4.1.0", | ||
"husky": "^8.0.3", | ||
"lint-staged": ">=15", | ||
"prettier": "3.0.3", | ||
"typescript": "^5.2.2" | ||
}, | ||
"lint-staged": { | ||
"**/*.{js,jsx,ts,tsx,json,yml}": [ | ||
"npx prettier --write" | ||
], | ||
"*.{js,jsx,ts,tsx}": [ | ||
"npx eslint --fix" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.