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