packages feed

cqrs-example-0.9.1: cqrs-example.cabal

Name:                cqrs-example
Version:             0.9.1
Synopsis:            Example for cqrs package
Description:         Example for cqrs package
License:             MIT
License-file:        LICENSE
Author:              Bardur Arantsson
Maintainer:          spam@scientician.net
Category:            Web
Build-type:          Simple
Cabal-version:       >=1.10
Extra-source-files:
    static/index.html
    static/css/*.css
    static/css/*.less
    static/img/*.png
    static/js/*.js
    static/js/app/*.js
    static/js/lib/*.js
    static/js/lib/knockout.mapping.js


Executable cqrs-example
  Main-is:           CQRSExample/Main.hs
  Ghc-options:       -Wall
  Build-depends:     base == 4.*
                   , aeson >= 0.6 && <0.7
                   , blaze-builder >= 0.3 && <0.4
                   , bytestring >= 0.9 && < 0.11
                   , cereal >= 0.3.3 && < 0.4
                   , conduit >= 1.0 && < 2
                   , containers >= 0.4 && < 0.6
                   , cqrs >= 0.9.0 && < 0.10.0
                   , deepseq >= 1.3 && < 2
                   , derive >= 2.5.11 && < 2.6
                   , scotty >= 0.4.6 && < 0.5
                   , stm >= 2.4
                   , text >= 0.11 && < 0.12
                   , transformers >= 0.2.2 && < 0.4
                   , wai-middleware-static >= 0.3.2 && < 0.4
                   , wai-eventsource >= 1.3 && < 1.4
  Default-extensions: DeriveDataTypeable
                      MultiParamTypeClasses
                      OverloadedStrings
                      ScopedTypeVariables
                      TemplateHaskell
  Hs-source-dirs:    src
  Other-modules:     CQRSExample.Aggregates
                     CQRSExample.Command
                     CQRSExample.Events
                     CQRSExample.Instances
                     CQRSExample.Json
                     CQRSExample.Notifications
                     CQRSExample.Query
                     CQRSExample.Routing
  Default-language:  Haskell2010