45 lines
962 B
Text
45 lines
962 B
Text
{-
|
|
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 = "exblo-app"
|
|
, dependencies =
|
|
[ "aff"
|
|
, "affjax"
|
|
, "affjax-web"
|
|
, "argonaut-codecs"
|
|
, "arrays"
|
|
, "console"
|
|
, "datetime"
|
|
, "effect"
|
|
, "either"
|
|
, "formatters"
|
|
, "halogen"
|
|
, "halogen-store"
|
|
, "halogen-subscriptions"
|
|
, "integers"
|
|
, "maybe"
|
|
, "nullable"
|
|
, "prelude"
|
|
, "remotedata"
|
|
, "routing"
|
|
, "routing-duplex"
|
|
, "safe-coerce"
|
|
, "simple-json"
|
|
, "strings"
|
|
, "tailrec"
|
|
, "transformers"
|
|
, "web-events"
|
|
, "web-uievents"
|
|
]
|
|
, packages = ./packages.dhall
|
|
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
|
|
}
|