Added line-height to more body elements.
[website.git] / package.yaml
1 name:                website
2 version:             0.1.0.0
3 github:              "githubuser/website"
4 license:             BSD3
5 author:              "Author name here"
6 maintainer:          "example@example.com"
7 copyright:           "2021 Author name here"
8
9 extra-source-files:
10 - README.md
11 - ChangeLog.md
12
13 # Metadata used when publishing your package
14 # synopsis:            Short description of your package
15 # category:            Web
16
17 # To avoid duplicated efforts in documentation and dealing with the
18 # complications of embedding Haddock markup inside cabal files, it is
19 # common to point users to the README.md file.
20 description:         Please see the README on GitHub at <https://github.com/githubuser/website#readme>
21
22 dependencies:
23 - aeson == 1.5.6.0
24 - base >= 4.7 && < 5
25 - bytestring == 0.10.12.0
26 - clay == 0.13.3
27 - cmark == 0.6
28 - containers == 0.6.2.1
29 - directory == 1.3.6.0
30 - filepath == 1.4.2.1
31 - http-api-data == 0.4.1.1
32 - http-media == 0.8.0.0
33 - lucid == 2.9.12.1
34 - mtl == 2.2.2
35 - safe-exceptions == 0.1.7.1
36 - servant == 0.18.2
37 - servant-lucid == 0.9.0.2
38 - servant-server == 0.18.2
39 - tagsoup == 0.14.8
40 - text == 1.2.4.1
41 - time == 1.9.3
42 - warp == 3.3.14
43 - with-utf8 == 1.0.2.2
44
45 default-extensions:
46 - DataKinds
47 - DeriveGeneric
48 - FlexibleContexts
49 - FlexibleInstances
50 - GADTs
51 - GeneralizedNewtypeDeriving
52 - KindSignatures
53 - MultiParamTypeClasses
54 - OverloadedStrings
55 - StandaloneDeriving
56 - TypeApplications
57 - TypeOperators
58 - ViewPatterns
59
60 library:
61   source-dirs: src
62
63 executables:
64   website:
65     main:                Main.hs
66     source-dirs:         app
67     ghc-options:
68     - -threaded
69     - -rtsopts
70     - -with-rtsopts=-N
71     dependencies:
72     - website
73
74 tests:
75   website-test:
76     main:                Spec.hs
77     source-dirs:         test
78     ghc-options:
79     - -threaded
80     - -rtsopts
81     - -with-rtsopts=-N
82     dependencies:
83     - website
84     - hspec == 2.7.8
85     - QuickCheck == 2.14.2