exblo-app/spago.dhall

46 lines
969 B
Text
Raw Normal View History

2024-08-27 12:27:37 +00:00
{-
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"
2024-09-07 02:03:42 +00:00
, dependencies =
2024-08-27 12:27:37 +00:00
[ "aff"
, "affjax"
, "affjax-web"
2024-09-07 02:03:42 +00:00
, "argonaut-codecs"
, "arrays"
, "codec-argonaut"
2024-08-27 12:27:37 +00:00
, "console"
, "datetime"
, "effect"
, "either"
2024-09-07 02:03:42 +00:00
, "formatters"
2024-08-27 12:27:37 +00:00
, "halogen"
2024-09-07 02:03:42 +00:00
, "halogen-store"
2024-08-27 12:27:37 +00:00
, "halogen-subscriptions"
2024-09-07 02:03:42 +00:00
, "integers"
2024-08-27 12:27:37 +00:00
, "maybe"
2024-09-07 02:03:42 +00:00
, "nullable"
2024-08-27 12:27:37 +00:00
, "prelude"
2024-09-07 02:03:42 +00:00
, "remotedata"
, "routing"
, "routing-duplex"
, "safe-coerce"
, "simple-json"
, "tailrec"
, "transformers"
2024-08-27 12:27:37 +00:00
, "web-events"
2024-09-07 02:03:42 +00:00
, "web-uievents"
2024-08-27 12:27:37 +00:00
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}