-
Notifications
You must be signed in to change notification settings - Fork 5
/
spago.dhall
91 lines (91 loc) · 1.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{ name = "marlowe-runner"
, dependencies =
[ "aff"
, "aff-promise"
, "argonaut"
, "argonaut-codecs"
, "arrays"
, "atleast"
, "bifunctors"
, "bigints"
, "cardano-multiplatform-lib"
, "cardano-wallet-client"
, "console"
, "control"
, "convertable-options"
, "datetime"
, "datetime-iso"
, "debug"
, "decimals"
, "effect"
, "either"
, "enums"
, "errors"
, "exceptions"
, "foldable-traversable"
, "foreign"
, "foreign-generic"
, "foreign-object"
, "formatters"
, "functions"
, "functors"
, "halogen-subscriptions"
, "heterogeneous"
, "identity"
, "integers"
, "js-date"
, "js-promise-aff"
, "js-timers"
, "js-unsafe-stringify"
, "lists"
, "marlowe"
, "marlowe-runtime-client"
, "maybe"
, "monad-loops"
, "newtype"
, "node-buffer"
, "node-fs-aff"
, "node-process"
, "now"
, "nullable"
, "ordered-collections"
, "parallel"
, "parsing"
, "partial"
, "polyform"
, "polyform-batteries-core"
, "polyform-batteries-urlencoded"
, "prelude"
, "profunctor"
, "profunctor-lenses"
, "quickcheck"
, "random"
, "react-basic"
, "react-basic-dom"
, "react-basic-hooks"
, "react-bootstrap"
, "record"
, "refs"
, "safe-coerce"
, "spec"
, "strings"
, "strings-extra"
, "tailrec"
, "these"
, "transformers"
, "tuples"
, "typelevel-prelude"
, "undefined-is-not-a-problem"
, "unsafe-coerce"
, "uri"
, "validation"
, "variant"
, "web-clipboard"
, "web-dom"
, "web-file"
, "web-html"
, "web-resize-observer"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}