-
Notifications
You must be signed in to change notification settings - Fork 158
/
pubspec.yaml
124 lines (105 loc) · 2.68 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
name: memo
description: An open-source, programming-oriented spaced repetition application.
# The following line prevents the package from being accidentally published to
# pub.dev using `pub publish`. This is preferred for private packages.
publish_to: "none"
version: 0.3.5+0
environment:
sdk: ">=2.16.0 <3.0.0"
flutter: 2.10.3
dependencies:
flutter:
sdk: flutter
###
# Core
###
meta: ^1.7.0
equatable: ^2.0.3
collection: ^1.15.0
tuple: ^2.0.0
path: ^1.8.0
path_provider: ^2.0.9
url_launcher: ^6.0.20
package_info_plus: ^6.0.0
firebase_core: ^2.27.1
firebase_crashlytics: ^3.4.19
firebase_analytics: ^10.8.10
###
# Database & Storage
###
sembast: ^3.2.0
uuid: ^4.3.3
###
# State Management
###
flutter_riverpod: ^2.5.1
flutter_hooks: ^0.20.5
hooks_riverpod: ^2.5.1
rxdart: ^0.27.3
###
# UI
###
layoutr: ^1.0.0
# Keep dependency locked, as we need it to be the exact same in `memo-editor`
flutter_quill: ^9.3.3
dev_dependencies:
flutter_test:
sdk: flutter
###
# Lint
###
strict: ^2.0.0
###
# Testing
###
mocktail: ^1.0.3
###
# Icon auto-generator
###
flutter_launcher_icons: ^0.13.1
###
# Splash Screen auto-generator
###
flutter_native_splash: ^2.4.0
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/
- assets/collections/
- assets/images/icons/
- assets/images/icons/editor/
- assets/images/illustrations/
- assets/licenses/
fonts:
- family: RobotoMono
fonts:
- asset: assets/fonts/RobotoMono-Thin.ttf
weight: 100
- asset: assets/fonts/RobotoMono-ExtraLight.ttf
weight: 200
- asset: assets/fonts/RobotoMono-Light.ttf
weight: 300
- asset: assets/fonts/RobotoMono-Regular.ttf
weight: 400
- asset: assets/fonts/RobotoMono-Medium.ttf
weight: 500
- asset: assets/fonts/RobotoMono-SemiBold.ttf
weight: 600
- asset: assets/fonts/RobotoMono-Bold.ttf
weight: 700
flutter_icons:
image_path: "assets/icon.png"
android: true
ios: true
flutter_native_splash:
image: assets/images/illustrations/logo.png
color: 1F1D28
# `flutter_native_splash` uses a less optimal method to create the splash screen that delays images placed in the
# `LaunchScreen` for a few seconds. We've manually fixed this issue by placing `logo.png` as an iOS resource in the
# PBX file.
# More information can be found at: https://developer.apple.com/forums/thread/19759
ios: false
web: false