-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpubspec.yaml
90 lines (65 loc) · 1.76 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
name: cocktailr
description: Find delicious cocktails based on the ingredients you have!
version: 1.1.2+10102
environment:
sdk: ">=2.6.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
# Used for providing BLoCs.
provider: ^3.0.0+1
# Used for additional stream functionality.
rxdart: ^0.22.1
# Used to find the paths for local storage.
path_provider: ^1.2.0
# Used for caching data.
hive: ^1.3.0
# Used for more icons.
font_awesome_flutter: ^8.5.0
# Used for navigation.
fluro: ^1.5.1
# Used to cache network images.
cached_network_image: ^2.0.0-rc
# Used as an improved HTTP client.
dio: ^3.0.7
# Used for cleaner, more beautiful logs.
logger: ^0.7.0+2
# Used for dependency injection.
get_it: ^3.0.3
# Used for localization.
flutter_localizations:
sdk: flutter
# Provides a placeholder for when an image is loading.
transparent_image: ^1.0.0
# Used for crash logging.
sentry: ^3.0.1
# Used for environment variables.
flutter_dotenv: ^2.1.0
dev_dependencies:
# Linter.
pedantic: ^1.8.0+1
# Translation tool.
intl_translation: ^0.17.7
# Extension for Hive to create type adapters.
hive_generator: ^0.7.0
# Tools to write binaries that run builders.
build_runner:
flutter_test:
sdk: flutter
flutter:
uses-material-design: true
assets:
- .env
- assets/images/ingredients/gin.jpg
- assets/images/ingredients/rum.jpg
- assets/images/ingredients/tequila.jpg
- assets/images/ingredients/vodka.jpg
- assets/images/ingredients/whiskey.jpg
fonts:
- family: Roboto
fonts:
- asset: assets/fonts/Roboto-Regular.ttf
- asset: assets/fonts/Roboto-Italic.ttf
style: italic
- asset: assets/fonts/Roboto-Bold.ttf
weight: 700