name:                glazier-react-examples
version:             0.6.0.0
x-revision: 1
synopsis:            Examples of using glazier-react
description:         "Deprecated" from hackage because it is not a library. Please go to github for the latest version.
homepage:            https://github.com/louispan/glazier-react#readme
license:             BSD3
license-file:        LICENSE
author:              Louis Pan
maintainer:          louis@pan.me
copyright:           2017 Louis Pan
category:            Web, GUI
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

executable glazier-react-todo
  hs-source-dirs:      examples/todo/haskell/app
  other-modules:       Todo.App
                       Todo.App.Run
                       Todo.Todo
                       Todo.Todo.Run
                       Todo.Filter
                       Todo.Footer
                       Todo.Footer.Run
  main-is:             Main.hs
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  cpp-options:         -DGHCJS_BROWSER
  build-depends:       base >= 4.7 && < 5
                     , containers >= 0.5 && < 0.6
                     , disposable >= 0.2.0.4 && < 1
                     , dlist >= 0.8 && < 0.9
                     , free >= 4.12 && < 5
                     , glazier >= 0.10 && < 1
                     , glazier-react >= 0.6.0 && < 1
                     , glazier-react-widget >= 0.6.0 && < 1
                     , javascript-extras >= 0.3 && < 1
                     , lens >= 4 && < 5
                     , mmorph >= 1 && < 2
                     , mtl >= 2 && < 3
                     , pipes >= 4 && < 5
                     , pipes-concurrency >= 2 && < 3
                     , pipes-misc >= 0.2.5 && < 1
                     , stm >= 2.4 && < 3
                     , text >= 1.2 && < 1.3
                     , transformers >= 0.4 && < 0.6
                     , unordered-containers >= 0.2.7 && < 0.3
  default-language:    Haskell2010
  default-extensions:  ApplicativeDo
  if impl(ghcjs)
    build-depends: ghcjs-base
                 , ghcjs-prim >= 0.1 && < 0.2
  if !impl(ghcjs)
    build-depends: ghcjs-base-stub >= 0.1.0.2 && < 1

source-repository head
  type:     git
  location: https://github.com/louispan/glazier-react-examples