]> Git — Sourcephile - gargantext.git/blob - package.yaml
[API][DB] Tree NodeTree: done.
[gargantext.git] / package.yaml
1 name: gargantext
2 version: '4.0.0.2'
3 synopsis: Search, map, share
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 ghc-options:
19 - -Wincomplete-uni-patterns
20 - -Wincomplete-record-updates
21 - -Wmissing-signatures
22 - -Wunused-binds
23 - -Wunused-imports
24 - -Werror
25 exposed-modules:
26 - Gargantext
27 - Gargantext.API
28 - Gargantext.API.Auth
29 - Gargantext.API.Count
30 - Gargantext.API.FrontEnd
31 - Gargantext.API.Orchestrator
32 - Gargantext.API.Search
33 - Gargantext.API.Settings
34 - Gargantext.Core
35 - Gargantext.Core.Types
36 - Gargantext.Core.Types.Main
37 - Gargantext.Core.Utils.Prefix
38 - Gargantext.Database
39 - Gargantext.Database.Bashql
40 - Gargantext.Database.Node.Document.Import
41 - Gargantext.Database.Types.Node
42 - Gargantext.Database.User
43 - Gargantext.Database.Cooc
44 - Gargantext.Database.Tree
45 - Gargantext.Prelude
46 - Gargantext.Text
47 - Gargantext.Text.Context
48 - Gargantext.Text.Examples
49 - Gargantext.Text.List.CSV
50 - Gargantext.Text.Metrics
51 - Gargantext.Text.Metrics.CharByChar
52 - Gargantext.Text.Metrics.Count
53 - Gargantext.Text.Parsers.CSV
54 - Gargantext.Text.Parsers.Date
55 - Gargantext.Text.Parsers.WOS
56 - Gargantext.Text.Search
57 - Gargantext.Text.Terms
58 - Gargantext.Text.Terms.Stop
59 - Gargantext.Text.Terms.Mono
60 - Gargantext.Text.Terms.Multi.Lang.En
61 - Gargantext.Text.Terms.Multi.Lang.Fr
62 - Gargantext.Text.Terms.Multi.RAKE
63 - Gargantext.Text.Terms.WithList
64 - Gargantext.TextFlow
65 - Gargantext.Viz.Graph
66 - Gargantext.Viz.Graph.Distances.Matrice
67 - Gargantext.Viz.Graph.Index
68 dependencies:
69 - QuickCheck
70 - accelerate
71 - aeson
72 - aeson-lens
73 - aeson-pretty
74 - async
75 - attoparsec
76 - base >=4.7 && <5
77 - base16-bytestring
78 - bytestring
79 - case-insensitive
80 - cassava
81 - clustering-louvain
82 - conduit
83 - conduit-extra
84 - containers
85 - contravariant
86 - data-time-segment
87 - directory
88 - duckling
89 - exceptions
90 - filepath
91 - fullstop
92 - fclabels
93 - fast-logger
94 - full-text-search
95 - http-client
96 - http-client-tls
97 - http-conduit
98 - http-api-data
99 - http-types
100 - hxt
101 - hlcm
102 - ini
103 - jose-jwt
104 # - kmeans-vector
105 - KMP
106 - lens
107 - located-base
108 - logging-effect
109 - matrix
110 - monad-logger
111 - mtl
112 - natural-transformation
113 - opaleye
114 - parsec
115 - path
116 - path-io
117 - postgresql-simple
118 - pretty-simple
119 - probability
120 - product-profunctors
121 - profunctors
122 - protolude
123 - pureMD5
124 - SHA
125 - rake
126 - regex-compat
127 - resourcet
128 - safe
129 - semigroups
130 - servant
131 - servant-auth
132 - servant-client
133 - servant-job
134 - servant-mock
135 - servant-multipart
136 - servant-server
137 - servant-swagger
138 - servant-swagger-ui
139 - servant-static-th
140 - split
141 - stemmer
142 - string-conversions
143 - swagger2
144 - tagsoup
145 - text-metrics
146 - time
147 - time-locale-compat
148 - timezone-series
149 - transformers
150 - transformers-base
151 - unordered-containers
152 - uuid
153 - vector
154 - wai
155 - wai-cors
156 - wai-extra
157 - warp
158 - yaml
159 - zip
160 - zlib
161 # - utc
162
163 executables:
164 gargantext-server:
165 main: Main.hs
166 source-dirs: bin/gargantext-server
167 ghc-options:
168 - -threaded
169 - -rtsopts
170 - -with-rtsopts=-N
171 - -O2
172 - -Wmissing-signatures
173 - -Wcompat
174 dependencies:
175 - base
176 - containers
177 - gargantext
178 - vector
179 - cassava
180 - ini
181 - optparse-generic
182 - unordered-containers
183 - full-text-search
184
185 gargantext-cli:
186 main: Main.hs
187 source-dirs: bin/gargantext-cli
188 ghc-options:
189 - -threaded
190 - -rtsopts
191 - -with-rtsopts=-N
192 - -O2
193 - -Wmissing-signatures
194 dependencies:
195 - aeson
196 - async
197 - base
198 - bytestring
199 - containers
200 - gargantext
201 - vector
202 - cassava
203 - ini
204 - optparse-generic
205 - split
206 - unordered-containers
207 - full-text-search
208
209 tests:
210 # garg-test:
211 # main: Main.hs
212 # source-dirs: src-test
213 # ghc-options:
214 # - -threaded
215 # - -rtsopts
216 # - -with-rtsopts=-N
217 # dependencies:
218 # - base
219 # - gargantext
220 # - hspec
221 # - QuickCheck
222 # - quickcheck-instances
223 # - time
224 # - parsec
225 # - duckling
226 # - text
227 garg-doctest:
228 main: Main.hs
229 source-dirs: src-doctest
230 ghc-options:
231 - -Werror
232 - -threaded
233 - -rtsopts
234 - -with-rtsopts=-N
235 - -Wmissing-signatures
236 dependencies:
237 - doctest
238 - Glob
239 - QuickCheck
240 - base
241 - gargantext