This repository was archived by the owner on Oct 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtracking-expenses.cabal
More file actions
149 lines (143 loc) · 3.73 KB
/
tracking-expenses.cabal
File metadata and controls
149 lines (143 loc) · 3.73 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
cabal-version: 3.0
name: tracking-expenses
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3.0-only
author: Christopher Valerio
maintainer: christopher@valerio.guru
-- copyright:
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common warnings
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
build-depends:
base
, hspec
, hspec-core
, bytestring
, hspec-contrib
, regex-tdfa
, HUnit
, QuickCheck
, tracking-expenses
ghc-options: -Wall -Werror
other-modules:
BancoChileScrapperSpec
build-tool-depends:
hspec-discover:hspec-discover
default-language: Haskell2010
library
hs-source-dirs: src/
build-depends:
base ^>=4.18.2.1
, geojson
, regex-tdfa
, regex-base
, HaskellNet
, network
, mtl
, optparse-applicative
, HaskellNet-SSL
, bytestring
, utf8-string
, purebred-email
, generic-lens
, lens
, old-time
, time
, flow
, tagsoup
, transformers
, text
, regex-tdfa
, uuid-types
, uuid
, mmzk-typeid
, aeson
, morpheus-graphql
, morpheus-graphql-core
, morpheus-graphql-client
--, morpheus-graphql-code-gen
, morpheus-graphql-subscriptions
exposed-modules:
App
Config
Cli
BacScrapper
BancoChileScrapper
ScrapperBuilder
AppEnv
Graphql
MonadTime
ImapMonad
Types
Schema.Schema
Schema.Mutations.UpdateCommerces
Schema.Mutations.DeleteBanks
Schema.Mutations.UpdateBanks
Schema.Mutations.DeleteCommerces
Schema.Mutations.InsertExpenseOne
Schema.Mutations.InsertExpenses
Schema.Mutations.UpdateExpenseById
Schema.Mutations.InsertBankOne
Schema.Mutations.InsertBanks
Schema.Mutations.UpdateBanksMany
Schema.Mutations.UpdateCommerceById
Schema.Mutations.UpdateExpenses
Schema.Mutations.UpdateBankById
Schema.Mutations.DeleteExpenseById
Schema.Mutations.UpdateExpensesMany
Schema.Mutations.InsertCommerceOne
Schema.Mutations.UpdateCommercesMany
Schema.Mutations.InsertCommerces
Schema.Mutations.DeleteCommerceById
Schema.Mutations.DeleteExpenses
Schema.Mutations.DeleteBankById
executable tracking-expenses
import: warnings
main-is: Main.hs
-- other-extensions:
build-depends:
base ^>=4.18.2.1
, geojson
, HaskellNet
, network
, mtl
, optparse-applicative
, HaskellNet-SSL
, bytestring
, utf8-string
, purebred-email
, generic-lens
, lens
, old-time
, time
, flow
, tagsoup
, transformers
, text
, regex-tdfa
, uuid-types
, uuid
, mmzk-typeid
, aeson
, morpheus-graphql
, morpheus-graphql-core
, morpheus-graphql-client
, morpheus-graphql-subscriptions
, tracking-expenses
hs-source-dirs: app
default-language: Haskell2010