-
Notifications
You must be signed in to change notification settings - Fork 5
/
spago.dhall
63 lines (63 loc) · 1.12 KB
/
spago.dhall
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{ name = "lumi-components"
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
, license = "Apache-2.0"
, repository = "https://github.com/lumihq/purescript-lumi-components"
, dependencies =
[ "aff"
, "aff-coroutines"
, "arrays"
, "bifunctors"
, "colors"
, "console"
, "control"
, "coroutines"
, "datetime"
, "effect"
, "either"
, "enums"
, "exceptions"
, "fixed-precision"
, "foldable-traversable"
, "foreign"
, "foreign-object"
, "free"
, "heterogeneous"
, "integers"
, "js-timers"
, "js-uri"
, "maybe"
, "media-types"
, "newtype"
, "nonempty"
, "nullable"
, "numbers"
, "ordered-collections"
, "parallel"
, "partial"
, "prelude"
, "profunctor-lenses"
, "react-basic"
, "react-basic-classic"
, "react-basic-dnd"
, "react-basic-dom"
, "react-basic-emotion"
, "react-basic-hooks"
, "record"
, "refs"
, "simple-json"
, "st"
, "strings"
, "tailrec"
, "transformers"
, "tuples"
, "unsafe-coerce"
, "unsafe-reference"
, "web-dom"
, "web-events"
, "web-file"
, "web-html"
, "web-storage"
, "web-uievents"
]
}