Files
acms/frontend/frontend.cabal

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-05-31 10:42:26 +02:00
cabal-version: 3.4
name: frontend
version: 0.1.0.0
license: BSD-3-Clause
license-file: LICENSE
maintainer: aforemny@posteo.de
author: Alexander Foremny
build-type: Simple
extra-doc-files: CHANGELOG.md
executable frontend
main-is: Main.hs
hs-source-dirs: app
2024-06-04 09:28:10 +02:00
other-modules:
Form
Form.Input
Form.Internal
2024-05-31 10:42:26 +02:00
default-language: GHC2021
2024-06-03 11:22:10 +02:00
default-extensions:
CPP OverloadedStrings RecordWildCards DeriveAnyClass
DuplicateRecordFields LambdaCase OverloadedRecordDot
2024-06-04 00:26:31 +02:00
NoFieldSelectors ViewPatterns
2024-06-03 11:22:10 +02:00
ghc-options:
-Wall -fno-warn-name-shadowing -fno-warn-ambiguous-fields
-fno-warn-incomplete-patterns -fno-warn-orphans
2024-06-04 00:26:31 +02:00
-fno-warn-incomplete-uni-patterns
2024-06-03 11:22:10 +02:00
2024-05-31 10:42:26 +02:00
build-depends:
2024-06-03 11:22:10 +02:00
aeson,
2024-05-31 10:42:26 +02:00
base,
bytestring,
containers,
2024-06-03 11:22:10 +02:00
data-default,
2024-05-31 10:42:26 +02:00
miso,
text,
utf8-string
if !arch(javascript)
build-depends: jsaddle-warp
if arch(javascript)
build-depends: ghcjs-base
2024-06-03 11:22:10 +02:00
2024-05-31 10:42:26 +02:00
else
build-depends: http-conduit