zgo-backend/zgo-backend.cabal

114 lines
2.2 KiB
Plaintext
Raw Normal View History

2022-04-22 16:15:23 +00:00
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
name: zgo-backend
2022-05-19 18:08:12 +00:00
version: 0.1.0.1
2022-04-22 16:15:23 +00:00
synopsis: Haskell Back-end for the ZGo point-of-sale application
description: Please see the README on GitLab at <https://gitlab.com/pitmutt/zgo-backend#readme>
category: Web
author: Rene Vergara
maintainer: rene@vergara.network
copyright: Copyright (c) 2022 Vergara Technologies LLC
2022-05-19 18:08:12 +00:00
license: BOSL
2022-04-22 16:15:23 +00:00
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
2022-05-19 18:08:12 +00:00
zgo.cfg
2022-04-22 16:15:23 +00:00
source-repository head
type: git
location: https://gitlab.com/pitmutt/zgo-backend
library
exposed-modules:
2022-05-12 19:59:29 +00:00
Item
2022-05-11 20:04:46 +00:00
Order
Owner
2022-05-17 17:47:27 +00:00
Payment
2022-05-11 20:04:46 +00:00
User
2022-04-22 16:15:23 +00:00
ZGoBackend
2022-05-11 20:04:46 +00:00
ZGoTx
2022-04-22 16:15:23 +00:00
other-modules:
Paths_zgo_backend
hs-source-dirs:
src
build-depends:
2022-04-30 12:59:49 +00:00
QuickCheck
, aeson
, array
2022-04-22 16:15:23 +00:00
, base >=4.7 && <5
, bson
2022-04-30 12:59:49 +00:00
, bytestring
, http-conduit
, http-types
2022-04-22 16:15:23 +00:00
, mongoDB
2022-04-30 12:59:49 +00:00
, quickcheck-instances
, random
, regex-base
, regex-compat
, scotty
, securemem
2022-04-22 16:15:23 +00:00
, text
, time
, unordered-containers
2022-04-30 12:59:49 +00:00
, vector
2022-05-17 17:47:27 +00:00
, wai-cors
2022-04-30 12:59:49 +00:00
, wai-extra
2022-05-19 13:24:52 +00:00
, warp-tls
2022-04-22 16:15:23 +00:00
default-language: Haskell2010
executable zgo-backend-exe
main-is: Main.hs
other-modules:
Paths_zgo_backend
hs-source-dirs:
app
2022-05-03 13:59:29 +00:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
2022-04-22 16:15:23 +00:00
build-depends:
aeson
, base
2022-04-30 12:59:49 +00:00
, bytestring
2022-05-19 13:24:52 +00:00
, configurator
2022-04-22 16:15:23 +00:00
, http-conduit
, http-types
, mongoDB
, scotty
, securemem
, text
, time
, wai-extra
2022-05-19 14:52:17 +00:00
, warp
2022-05-19 13:24:52 +00:00
, warp-tls
2022-04-22 16:15:23 +00:00
, zgo-backend
default-language: Haskell2010
test-suite zgo-backend-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_zgo_backend
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -main-is Spec
build-depends:
QuickCheck
2022-04-30 12:59:49 +00:00
, aeson
2022-04-22 16:15:23 +00:00
, base >=4.7 && <5
2022-04-30 12:59:49 +00:00
, bytestring
2022-04-22 16:15:23 +00:00
, hspec
2022-04-30 12:59:49 +00:00
, hspec-expectations-json
, hspec-wai
, http-conduit
, http-types
, mongoDB
, securemem
, text
2022-05-11 20:04:46 +00:00
, time
2022-04-22 16:15:23 +00:00
, zgo-backend
default-language: Haskell2010