-
Notifications
You must be signed in to change notification settings - Fork 1
/
pubspec.yaml
138 lines (112 loc) · 2.54 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: photo_editor
description: Simple photo editor
publish_to: 'none'
version: 1.0.0+1
environment:
sdk: '>=2.16.2'
flutter: '>=2.10.5'
dependencies:
flutter:
sdk: flutter
bitmap: ^0.1.2
photo_manager: ^2.5.1+1
gallery_saver: ^2.3.2
# SDK extensions
async: ^2.8.2
collection: ^1.15.0
meta: ^1.7.0
# System
path_provider: ^2.0.0
path: ^1.8.0
platform_info: ^3.1.0
# Data manipulation
pure: ^0.2.0
fast_immutable_collections: ^7.0.0
stream_transform: ^2.0.0
# BLoC
stream_bloc: ^0.5.1
# Flutter integrations
flutter_bloc: ^8.0.1
provider: ^6.0.2
# Code generation
freezed_annotation: ^2.1.0
json_annotation: ^4.4.0
select_annotation: ^0.2.0
# Internationalization
intl: ^0.17.0
flutter_localizations:
sdk: flutter
# Logging
l: ^3.1.0
sentry_flutter: ^6.2.2
stack_trace: ^1.10.0
# Persistance
drift: ^2.1.0
sqlite3_flutter_libs: ^0.5.0
shared_preferences: ^2.0.13
# HTTP
dio: ^4.0.4
retrofit: ^3.0.1
# Navigation
auto_route: ^5.0.1
dev_dependencies:
# Analyzer extensions
dart_code_metrics: ^4.13.0
purple_metrics_lints: ^0.3.0
# Utils
flutter_launcher_icons: ^0.11.0
flutter_native_splash: ^2.0.5
# Code generation
build_runner: ^2.1.7
auto_route_generator: ^5.0.2
select: ^0.3.1
retrofit_generator: ^4.0.1
drift_dev: ^2.1.0
freezed: ^2.1.0+1
json_serializable: ^6.1.4
flutter_gen_runner: ^4.1.5
# Tooling
grinder: ^0.9.1
# Tests
#flutter_driver:
# sdk: flutter
#integration_test:
# sdk: flutter
#flutter_test:
# sdk: flutter
coverage: ^1.0.3
test: ^1.21.1
#bloc_test: ^8.1.0
#mockito: ^5.1.0
#build_test: ^2.1.5
flutter_icons:
android: "launcher_icon"
ios: false
image_path: "asset/logo.png"
adaptive_icon_background: "#000000"
adaptive_icon_foreground: "asset/logo.png"
flutter_gen:
output: lib/src/core/resources
flutter:
uses-material-design: true
generate: true
assets:
- asset/
- asset/image/
fonts:
- family: Inter
fonts:
- asset: asset/font/inter/Inter-ExtraLight.ttf
weight: 200
- asset: asset/font/inter/Inter-Light.ttf
weight: 300
- asset: asset/font/inter/Inter-Regular.ttf
weight: 400
- asset: asset/font/inter/Inter-Medium.ttf
weight: 500
- asset: asset/font/inter/Inter-SemiBold.ttf
weight: 600
- asset: asset/font/inter/Inter-Bold.ttf
weight: 700
- asset: asset/font/inter/Inter-ExtraBold.ttf
weight: 800