]> Git — Sourcephile - gargantext.git/blob - package.yaml
[STATIC+SWAGGER+MOCK] startGargantextMock 8008
[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 - http-conduit
80 - ini
81 - lens
82 - logging-effect
83 - opaleye
84 - parsec
85 - path
86 - path-io
87 - postgresql-simple
88 - pretty
89 - product-profunctors
90 - profunctors
91 - protolude
92 - pureMD5
93 - regex-compat
94 - safe
95 - semigroups
96 - servant
97 - servant-auth
98 - servant-client
99 - servant-mock
100 - servant-multipart
101 - servant-server
102 - servant-swagger
103 - servant-swagger-ui
104 - servant-static-th
105 - split
106 - swagger2
107 - tagsoup
108 - text-metrics
109 - time
110 - time-locale-compat
111 - timezone-series
112 - transformers
113 - unordered-containers
114 - uuid
115 - vector
116 - wai
117 - warp
118 - yaml
119 - zip
120 - zlib
121 # - utc
122
123 executable:
124 main: Main.hs
125 source-dirs: app
126 ghc-options: -threaded -rtsopts -with-rtsopts=-N -O2
127 dependencies:
128 - gargantext
129 - ini
130 - base
131 - unordered-containers
132
133 tests:
134 garg-test:
135 main: Main.hs
136 source-dirs: src-test
137 ghc-options:
138 - -threaded
139 - -rtsopts
140 - -with-rtsopts=-N
141 dependencies:
142 - base
143 - gargantext
144 - hspec
145 - QuickCheck
146 garg-doctest:
147 main: Main.hs
148 source-dirs: src-doctest
149 ghc-options:
150 - -Werror
151 - -threaded
152 - -rtsopts
153 - -with-rtsopts=-N
154 dependencies:
155 - doctest
156 - Glob
157 - QuickCheck
158 - base
159 - gargantext