-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.cabal
111 lines (108 loc) · 2.54 KB
/
backend.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
cabal-version: >=1.10
-- Initial package description 'backend.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: backend
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: kubaracek
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable backend
-- hs-source-dirs:
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: app
-- other-modules:
-- other-extensions:
build-depends: base >=4.12
, backend
, servant
, servant-server
, servant-auth
, servant-auth-server
, persistent-postgresql
, monad-logger
, safe
, monad-metrics
, warp
, wai-middleware-metrics
, ekg
, ekg-core
, microlens
, servant-elm
, mtl >= 2.2.2
, aeson >= 1.4.6.0
, flight-igc >= 1.0.0
, either
, hoauth2
, hashable
, uri-bytestring
, http-conduit
library
default-language:
Haskell2010
hs-source-dirs:
src
exposed-modules:
Config
, Init
, Models
, Api
, Api.User
, Api.Auth
, IDP
, IDP.Github
, Logger
, DevelMain
, Types
, Utils
, Session
build-depends:
base >=4.12
, aeson
, bytestring
, containers
, ekg
, ekg-core
, fast-logger
, foreign-store
, katip
, microlens
, monad-control
, monad-logger
, monad-metrics
, mtl
, persistent
, persistent-postgresql
, persistent-template
, safe
, servant
, servant-server
, servant-elm
, servant-js
, elm-bridge
, text
, transformers
, unordered-containers
, wai
, wai-extra
, wai-middleware-metrics
, warp
, resource-pool
, cryptonite
, uuid
, flight-igc
, either
, hoauth2
, hashable
, uri-bytestring
, http-conduit
ghc-options:
-fwarn-unused-imports