-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcorpus-db.cabal
45 lines (44 loc) · 1.5 KB
/
corpus-db.cabal
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
name: corpus-db
version: 0.0.1
-- synopsis:
-- description:
homepage: https://github.com/JonathanReeve/corpus-db#readme
license: GPL-3
license-file: LICENSE
author: Jonathan Reeve
maintainer: jon.reeve@gmail.com
copyright: Copyright: (c) 2017 Jonathan Reeve
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
executable corpus-db
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
build-depends: aeson >= 1.1.2.0,
base >= 4.7 && < 5,
blaze-html,
blaze-markup,
clay,
containers,
convertible,
scotty,
HDBC,
HDBC-sqlite3,
monad-logger,
persistent,
persistent-sqlite,
persistent-template,
regex-pcre-builtin >= 0.94,
resourcet,
scotty,
text,
time,
transformers,
wai-middleware-static >= 0.8,
wai-extra >= 3.0
other-modules: Client.CSS
Controllers.Home
Views.Home
Views.Utils