1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
name: server
version: 0.0.1
license: GPL-3
license-file: LICENSE
author: Joris Guyonvarch
maintainer: joris@guyonvarch.me
category: Web
build-type: Simple
cabal-version: >=1.10
executable server
main-is: Main.hs
ghc-options: -Wall -Werror
build-depends: aeson
, base >=4.9 && <4.11
, base64-bytestring
, blaze-builder
, blaze-html
, bytestring
, clay
, clientsession
, common
, config-manager
, containers
, cookie
, email-validate
, filepath
, http-conduit
, http-types
, lens
, monad-logger
, mtl
, parsec
, process
, resourcet
, random
, scotty
, sqlite-simple
, text
, time
, transformers
, unordered-containers
, uuid
, wai
, wai-middleware-static
hs-source-dirs: src
default-language: Haskell2010
|