-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoursestitch-api.cabal
79 lines (76 loc) · 3.17 KB
/
coursestitch-api.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
-- Initial coursestitch-api.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: coursestitch-api
version: 0.1.0.0
-- synopsis:
-- description:
license-file: LICENSE
-- author:
-- maintainer:
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
build-depends: persistent, persistent-template, persistent-sqlite, persistent-postgresql,
esqueleto,
lucid >=2.6.1 && <2.7,
scotty,
cookie, blaze-builder, time, containers,
bcrypt,
entropy,
wai-middleware-static,
aeson,
http-types,
transformers, monad-logger,
template-haskell,
text,
bytestring, base64-bytestring,
base >=4.6 && <4.7
hs-source-dirs: lib
exposed-modules: CourseStitch.Templates,
CourseStitch.Templates.Concept,
CourseStitch.Templates.Resource,
CourseStitch.Templates.Relationship,
CourseStitch.Templates.Topic,
CourseStitch.Templates.User,
CourseStitch.Templates.Utils,
CourseStitch.Handlers,
CourseStitch.Handlers.Concept,
CourseStitch.Handlers.Resource,
CourseStitch.Handlers.Relationship,
CourseStitch.Handlers.Mastery,
CourseStitch.Handlers.Topic,
CourseStitch.Handlers.User,
CourseStitch.Handlers.Utils,
CourseStitch.Models,
CourseStitch.Models.Models,
CourseStitch.Models.RunDB,
CourseStitch.Models.Queries,
CourseStitch.Models.TestData,
CourseStitch.Models.Types,
CourseStitch.Models.Tables,
CourseStitch,
Web.Scotty.Cookie
default-language: Haskell2010
executable coursestitch-web
main-is: Main.hs
build-depends: coursestitch-api,
persistent, persistent-template, persistent-sqlite, persistent-postgresql,
esqueleto,
lucid >=2.6.1 && <2.7,
scotty,
cookie, blaze-builder, time, containers,
bcrypt,
entropy,
wai-middleware-static,
aeson,
http-types,
transformers, monad-logger,
template-haskell,
text,
bytestring, base64-bytestring,
base >=4.6 && <4.7
hs-source-dirs: src
default-language: Haskell2010