-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubspec.yaml
109 lines (89 loc) · 2.01 KB
/
pubspec.yaml
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: clean_architecture_flutter
description: A new Flutter project.
publish_to: "none" # Remove this line if you wish to publish to pub.dev
version: 1.0.0+1
environment:
sdk: ">=3.1.0 <4.0.0"
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
# State Management
flutter_riverpod: 2.3.6
# Networking
retrofit: 4.0.1
dio: 5.3.2
connectivity_plus: 4.0.1
internet_connection_checker: 1.0.0+1
network_info_plus: 4.0.2
# Navigation
go_router: 9.0.0
# Generators
freezed_annotation: 2.2.0
json_annotation: 4.8.1
injectable: 2.1.2
retrofit_generator: 5.0.0
# Flavors
flutter_flavorizr: 2.2.1
# App Icon
flutter_launcher_icons: 0.13.1
# Splash Screen
flutter_native_splash: 2.3.1
# Local Storage
flutter_secure_storage: 8.0.0
# Testing
mocktail: 1.0.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: 2.0.0
build_runner: 2.4.5
freezed: 2.3.5
json_serializable: 6.7.0
integration_test:
sdk: flutter
flutter:
uses-material-design: true
assets:
- assets/imgs/
- assets/icons/
fonts:
- family: NotoSans
fonts:
- asset: assets/fonts/NotoSans-Regular.ttf
weight: 400
- asset: assets/fonts/NotoSans-Italic.ttf
weight: 400
style: italic
- asset: assets/fonts/NotoSans-Medium.ttf
weight: 500
- asset: assets/fonts/NotoSans-SemiBold.ttf
weight: 600
- asset: assets/fonts/NotoSans-Bold.ttf
weight: 700
- asset: assets/fonts/NotoSans-BoldItalic.ttf
weight: 700
style: italic
flavorizr:
flavors:
dev:
app:
name: "CACF_dev"
android:
applicationId: "com.cacf.dev"
ios:
bundleId: "com.cacf.dev"
stg:
app:
name: "CACF_stg"
android:
applicationId: "com.cacf.stg"
ios:
bundleId: "com.cacf.stg"
prd:
app:
name: "CACF"
android:
applicationId: "com.cacf"
ios:
bundleId: "com.cacf"