exblo-app/spago.dhall

37 lines
799 B
Text
Raw Permalink 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"
, dependencies =
[ "aff"
, "affjax"
, "simple-json"
, "affjax-web"
, "console"
, "tailrec"
, "nullable"
, "integers"
, "datetime"
, "formatters"
, "arrays"
, "effect"
, "either"
, "halogen"
, "halogen-subscriptions"
, "maybe"
, "prelude"
, "web-events"
]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
}