Files
acms/frontend/frontend.cabal

59 lines
1.3 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:
2024-06-04 14:36:26 +02:00
Api
2024-06-04 09:28:10 +02:00
Form
Form.Input
Form.Internal
2024-06-04 14:36:26 +02:00
Page
2024-06-05 10:41:02 +02:00
Page.EditValue
2024-06-04 14:36:26 +02:00
Page.ListCollection
2024-06-06 23:05:41 +02:00
Page.NewCollection
2024-06-04 14:36:26 +02:00
Route
Schema
2024-06-04 09:28:10 +02:00
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 14:36:26 +02:00
NoFieldSelectors ViewPatterns QuasiQuotes BlockArguments
2024-06-03 11:22:10 +02:00
ghc-options:
-Wall -fno-warn-name-shadowing -fno-warn-ambiguous-fields
2024-06-04 14:36:26 +02:00
-fno-warn-orphans
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-06-04 14:36:26 +02:00
attoparsec,
2024-05-31 10:42:26 +02:00
base,
bytestring,
2024-06-05 22:47:49 +02:00
common,
2024-05-31 10:42:26 +02:00
containers,
2024-06-03 11:22:10 +02:00
data-default,
2024-05-31 10:42:26 +02:00
miso,
2024-06-04 12:32:59 +02:00
neat-interpolation,
2024-06-05 10:41:02 +02:00
safe,
2024-06-05 22:47:49 +02:00
split,
2024-05-31 10:42:26 +02:00
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