aboutsummaryrefslogtreecommitdiff
path: root/client/client.cabal
blob: 9d3e87334c77d3a325d56a9a7ebac0f65b38d0ec (plain)
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
name:                client
version:             0.0.1
license:             GPL-3
license-file:        LICENSE
author:              Joris Guyonvarch
maintainer:          joris@guyonvarch.me
category:            Web
build-type:          Simple
cabal-version:       >=1.10

executable client
  main-is:             Main.hs
  ghc-options:         -Wall -Werror
  build-depends:       aeson
                     , base >=4.9 && <4.11
                     , bytestring
                     , common
                     , containers
                     , jsaddle-dom
                     , reflex-dom
                     , text
                     , time
  hs-source-dirs:      src
  default-language:    Haskell2010
  other-modules:       Component.Button
                     , Component.Input
                     , Icon
                     , Main
                     , View.App
                     , View.Header
                     , View.Payment
                     , View.Payment.Pages
                     , View.Payment.Table
                     , View.SignIn