datarekisteri/datarekisteri.cabal

64 lines
1.1 KiB
Plaintext

cabal-version: 3.6
name: datarekisteri
version: 0.0.1
author: Saku Laesvuori
license: AGPL-3.0-or-later
license-file: COPYING.md
build-type: Simple
stability: alpha
executable datarekisteri
build-depends:
aeson,
base,
base64,
cryptonite,
email-validate,
esqueleto,
memory,
mime-mail,
monad-logger,
morpheus-graphql,
morpheus-graphql-app,
morpheus-graphql-client,
morpheus-graphql-core,
morpheus-graphql-server,
mtl,
persistent,
persistent-postgresql,
relude,
scotty,
smtp-mail,
text,
time,
yesod,
yesod-auth,
containers,
wai,
warp,
wai-cors,
wai-extra,
yesod-core,
yesod-static,
directory
main-is: Client.hs
other-modules:
Client.ApiRequests,
Client.Auth,
Client.FormFields,
Client.Handlers,
Client.Handlers.Applications,
Client.Handlers.Apply,
Client.Handlers.Profile,
Client.Handlers.VerifyEmail,
Client.Types,
Server,
Server.API,
Server.DB,
Server.DB.Queries,
Server.Email,
Server.Types,
Server.Utils
hs-source-dirs: .
default-language: Haskell2010