spago.dhall 1.87 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{-
Welcome to a Spago project!
You can edit this file as you like.

Need help? See the following resources:
- Spago documentation: https://github.com/purescript/spago
- Dhall language tour: https://docs.dhall-lang.org/tutorials/Language-Tour.html

When creating a new Spago project, you can use
`spago init --no-comments` or `spago init -C`
to generate this file without the comments in this block.
-}
{ name = "gargantext"
, dependencies =
15 16
  [ "aff"
  , "aff-promise"
17
  , "affjax"
18
  , "affjax-web"
19
  , "argonaut"
20 21
  , "argonaut-codecs"
  , "argonaut-core"
22
  , "arraybuffer-types"
23 24 25
  , "arrays"
  , "bifunctors"
  , "colors"
26
  , "console"
27
  , "control"
arturo's avatar
arturo committed
28
  , "convertable-options"
29
  , "css"
arturo's avatar
arturo committed
30
  , "d3"
31
  , "data-default"
32
  , "datetime"
33
  , "debug"
34 35 36
  , "dom-filereader"
  , "dom-simple"
  , "effect"
37
  , "either"
38
  , "enums"
39 40 41 42
  , "exceptions"
  , "ffi-simple"
  , "foldable-traversable"
  , "foreign"
43
  , "foreign-object"
44
  , "form-urlencoded"
45
  , "formatters"
46
  , "functions"
47
  , "graphql-client"
48
  , "heterogeneous"
49
  , "http-methods"
50 51
  , "integers"
  , "js-timers"
52
  , "lists"
53
  , "markdown-it"
54
  , "maybe"
55
  , "media-types"
56
  , "milkis"
57
  , "newtype"
58 59
  , "nonempty"
  , "now"
60
  , "nullable"
61
  , "numbers"
62 63 64 65
  , "ordered-collections"
  , "orders"
  , "parallel"
  , "partial"
66
  , "prelude"
67
  , "profunctor-lenses"
68 69 70 71
  , "psci-support"
  , "random"
  , "react"
  , "reactix"
72
  , "record"
73 74
  , "record-extra"
  , "routing"
75
  , "sequences"
76 77
  , "simple-json"
  , "simple-json-generics"
78
  , "string-search"
79
  , "strings"
arturo's avatar
arturo committed
80
  , "strings-extra"
81
  , "stringutils"
82
  , "these"
83
  , "toestand"
84 85
  , "transformers"
  , "tuples"
86
  , "tuples-native"
87 88 89
  , "typelevel"
  , "typelevel-prelude"
  , "unfoldable"
90
  , "unordered-collections"
91
  , "unsafe-coerce"
92
  , "uri"
93
  , "uuid"
arturo's avatar
arturo committed
94
  , "validation"
95
  , "web-file"
96
  , "web-html"
97
  , "web-storage"
98
  , "web-url"
99
  , "web-xhr"
100 101
  ]
, packages = ./packages.dhall
102
, sources = [ "src/**/*.purs" ]
103
}