]> Git — Sourcephile - gargantext.git/blob - package.yaml
[CORS] Adding CORS for test with frontend/Purescript.
[gargantext.git] / package.yaml
1 name: gargantext
2 version: '0.1.0.0'
3 synopsis: Deep (Collaborative) Text mining project
4 description: Please see README.md
5 category: Data
6 author: Gargantext Team
7 maintainer: team@gargantext.org
8 copyright:
9 - ! 'Copyright: (c) 2017-2018: see git logs and README'
10 license: BSD3
11 homepage: https://gargantext.org
12 ghc-options: -Wall
13 dependencies:
14 - extra
15 - text
16 library:
17 source-dirs: src
18 default-extensions:
19 - NoImplicitPrelude
20 ghc-options:
21 - -Wincomplete-uni-patterns
22 - -Wincomplete-record-updates
23 - -Werror
24 exposed-modules:
25 - Gargantext
26 - Gargantext.Analysis
27 - Gargantext.DSL
28 - Gargantext.Database
29 - Gargantext.Database.Instances
30 - Gargantext.Database.Ngram
31 - Gargantext.Database.Node
32 - Gargantext.Database.Facet
33 - Gargantext.Database.NodeNgram
34 - Gargantext.Database.NodeNgramNgram
35 - Gargantext.Database.NodeNode
36 - Gargantext.Database.NodeNodeNgram
37 - Gargantext.Database.Utils
38 - Gargantext.Database.User
39 - Gargantext.Ngrams
40 - Gargantext.Ngrams.Count
41 - Gargantext.Ngrams.CoreNLP
42 - Gargantext.Ngrams.Parser
43 - Gargantext.Ngrams.Lang.En
44 - Gargantext.Ngrams.Lang.Fr
45 - Gargantext.Ngrams.Metrics
46 - Gargantext.Ngrams.TextMining
47 - Gargantext.Ngrams.Occurrences
48 - Gargantext.Parsers
49 - Gargantext.Parsers.WOS
50 - Gargantext.Parsers.Date
51 - Gargantext.Prelude
52 - Gargantext.RCT
53 - Gargantext.API
54 - Gargantext.API.Auth
55 - Gargantext.Types
56 - Gargantext.Types.Main
57 - Gargantext.Types.Node
58 - Gargantext.Utils.DateUtils
59 - Gargantext.Utils.Prefix
60 dependencies:
61 - QuickCheck
62 - aeson
63 - aeson-lens
64 - aeson-pretty
65 - async
66 - attoparsec
67 - base >=4.7 && <5
68 - base16-bytestring
69 - bytestring
70 - case-insensitive
71 - conduit
72 - conduit-extra
73 - containers
74 - contravariant
75 - data-time-segment
76 - directory
77 - duckling
78 - filepath
79 - fclabels
80 - fast-logger
81 # - haskell-gi-base
82 - http-conduit
83 - http-api-data
84 - http-types
85 - hxt
86 - ini
87 - jose-jwt
88 - lens
89 - logging-effect
90 - monad-logger
91 - mtl
92 - natural-transformation
93 - opaleye
94 - parsec
95 - path
96 - path-io
97 - postgresql-simple
98 - pretty
99 - product-profunctors
100 - profunctors
101 - protolude
102 - pureMD5
103 - regex-compat
104 - resourcet
105 - safe
106 - semigroups
107 - servant
108 - servant-auth
109 - servant-client
110 - servant-mock
111 - servant-multipart
112 - servant-server
113 - servant-swagger
114 - servant-swagger-ui
115 - servant-static-th
116 - split
117 - swagger2
118 - tagsoup
119 - text-metrics
120 - time
121 - time-locale-compat
122 - timezone-series
123 - transformers
124 - transformers-base
125 - unordered-containers
126 - uuid
127 - vector
128 - wai
129 - wai-cors
130 - wai-extra
131 - warp
132 - yaml
133 - zip
134 - zlib
135 # - utc
136
137 executable:
138 main: Main.hs
139 source-dirs: app
140 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
141 dependencies:
142 - base
143 - gargantext
144 - ini
145 - optparse-generic
146 - unordered-containers
147
148 tests:
149 garg-test:
150 main: Main.hs
151 source-dirs: src-test
152 ghc-options:
153 - -threaded
154 - -rtsopts
155 - -with-rtsopts=-N
156 dependencies:
157 - base
158 - gargantext
159 - hspec
160 - QuickCheck
161 - quickcheck-instances
162 - time
163 - parsec
164 - duckling
165 - text
166 garg-doctest:
167 main: Main.hs
168 source-dirs: src-doctest
169 ghc-options:
170 - -Werror
171 - -threaded
172 - -rtsopts
173 - -with-rtsopts=-N
174 dependencies:
175 - doctest
176 - Glob
177 - QuickCheck
178 - base
179 - gargantext