datarekisteri/datarekisteri.cabal

70 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-08-15 10:06:54 +03:00
cabal-version: 3.6
2023-01-20 09:20:06 +02:00
name: datarekisteri
version: 0.0.1
author: Saku Laesvuori
license: AGPL-3.0-or-later
license-file: COPYING.md
build-type: Simple
stability: alpha
data-files:
db/migrations/*.sql
2023-01-20 09:20:06 +02:00
executable datarekisteri
2023-04-10 11:44:51 +03:00
build-depends:
aeson,
base,
2023-08-15 10:06:54 +03:00
base64,
2023-04-10 11:44:51 +03:00
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,
process,
2023-04-10 11:44:51 +03:00
relude,
scotty,
smtp-mail,
text,
time,
yesod,
yesod-auth,
containers,
wai,
warp,
wai-cors,
wai-extra,
yesod-core,
yesod-static,
directory
2023-01-20 09:20:06 +02:00
main-is: Client.hs
2023-04-10 11:44:51 +03:00
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,
Paths_datarekisteri
autogen-modules:
Paths_datarekisteri
2023-09-07 18:36:39 +03:00
hs-source-dirs: src
2023-01-20 09:20:06 +02:00
default-language: Haskell2010