150 lines
4.5 KiB
YAML
150 lines
4.5 KiB
YAML
name: teachit
|
|
description: "AI Study Assistant - Educational Intelligence Platform"
|
|
# The following line prevents the package from being accidentally published to
|
|
# pub.dev using `flutter pub publish`. This is preferred for private packages.
|
|
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|
|
|
# The following defines the version and build number for your application.
|
|
# A version number is three numbers separated by dots, like 1.2.43
|
|
# followed by an optional build number separated by a +.
|
|
# Both the version and the builder number may be overridden in flutter
|
|
# build by specifying --build-name and --build-number, respectively.
|
|
# In Android, build-name is used as versionName while build-number used as versionCode.
|
|
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning
|
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number is used as CFBundleVersion.
|
|
# Read more about iOS versioning at
|
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
|
# In Windows, build-name is used as the major, minor, and patch parts
|
|
# of the product and file versions while build-number is used as the build suffix.
|
|
version: 1.0.0+1
|
|
|
|
environment:
|
|
sdk: ^3.11.5
|
|
|
|
# Dependencies specify other packages that your package needs in order to work.
|
|
# To automatically upgrade your package dependencies to the latest versions
|
|
# consider running `flutter pub upgrade --major-versions`. Alternatively,
|
|
# dependencies can be manually updated by changing the version numbers below to
|
|
# the latest version available on pub.dev. To see which dependencies have newer
|
|
# versions available, run `flutter pub outdated`.
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
flutter_localizations:
|
|
sdk: flutter
|
|
|
|
# State Management
|
|
flutter_riverpod: ^2.4.9
|
|
riverpod_annotation: ^2.3.3
|
|
|
|
# Navigation
|
|
go_router: ^12.1.3
|
|
flutter_animate: ^4.2.0+1
|
|
|
|
# Firebase
|
|
firebase_core: ^2.25.4
|
|
firebase_auth: ^4.17.8
|
|
cloud_firestore: ^4.15.8
|
|
firebase_storage: ^11.6.9
|
|
firebase_analytics: ^10.8.0
|
|
firebase_messaging: ^14.9.3
|
|
google_sign_in: ^6.2.1
|
|
crypto: ^3.0.3
|
|
firebase_crashlytics: ^3.5.7
|
|
|
|
# UI Components
|
|
cupertino_icons: ^1.0.6
|
|
google_fonts: ^6.1.0
|
|
cached_network_image: ^3.3.0
|
|
flutter_svg: ^2.0.9
|
|
lottie: ^2.7.0
|
|
shimmer: ^3.0.0
|
|
flutter_staggered_animations: ^1.1.1
|
|
|
|
# HTTP & Networking
|
|
dio: ^5.4.0
|
|
http: ^1.1.2
|
|
connectivity_plus: ^5.0.2
|
|
retry: ^3.1.2
|
|
|
|
# Local Storage
|
|
shared_preferences: ^2.2.2
|
|
hive: ^2.2.3
|
|
hive_flutter: ^1.1.0
|
|
flutter_secure_storage: ^9.0.0
|
|
path_provider: ^2.1.1
|
|
|
|
# Utilities
|
|
intl: ^0.20.2
|
|
uuid: ^4.2.1
|
|
equatable: ^2.0.5
|
|
json_annotation: ^4.8.1
|
|
freezed_annotation: ^2.4.1
|
|
collection: ^1.18.0
|
|
|
|
# File Handling
|
|
# file_picker: ^6.1.1 # Temporarily disabled due to compatibility issues
|
|
file_selector: ^1.0.3
|
|
image_picker: ^1.0.4
|
|
|
|
# Markdown rendering
|
|
flutter_markdown: ^0.6.23
|
|
permission_handler: ^11.0.1
|
|
path: ^1.8.3
|
|
|
|
# Charts & Graphs
|
|
fl_chart: ^0.64.0
|
|
|
|
# Biometrics
|
|
local_auth: ^2.1.7
|
|
|
|
# WebView
|
|
webview_flutter: ^4.4.2
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
integration_test:
|
|
sdk: flutter
|
|
|
|
# The "flutter_lints" package below contains a set of recommended lints to
|
|
# encourage good coding practices. The lint set provided by the package is
|
|
# activated in the `analysis_options.yaml` file located at the root of your
|
|
# package. See that file for information about deactivating specific lint
|
|
# rules and activating additional ones.
|
|
flutter_lints: ^3.0.1
|
|
build_runner: ^2.4.7
|
|
riverpod_generator: ^2.3.9
|
|
json_serializable: ^6.7.1
|
|
freezed: ^2.4.6
|
|
hive_generator: ^2.0.1
|
|
mockito: ^5.4.4
|
|
|
|
# For information on the generic Dart part of this file, see the
|
|
# following page: https://dart.dev/tools/pub/pubspec
|
|
|
|
# The following section is specific to Flutter packages.
|
|
flutter:
|
|
|
|
# The following line ensures that the Material Icons font is
|
|
# included with your application, so that you can use the icons in
|
|
# the material Icons class.
|
|
uses-material-design: true
|
|
|
|
assets:
|
|
- assets/images/
|
|
- assets/icons/
|
|
- assets/animations/
|
|
- lib/l10n/
|
|
|
|
# fonts:
|
|
# - family: Inter
|
|
# fonts:
|
|
# - asset: assets/fonts/Inter-Regular.ttf
|
|
# - asset: assets/fonts/Inter-Medium.ttf
|
|
# weight: 500
|
|
# - asset: assets/fonts/Inter-SemiBold.ttf
|
|
# weight: 600
|
|
# - asset: assets/fonts/Inter-Bold.ttf
|
|
# weight: 700
|