mirror of
https://github.com/rowtype-yoga/purescript-graphql-fundeps.git
synced 2024-11-25 07:07:45 +03:00
34 lines
731 B
Plaintext
34 lines
731 B
Plaintext
{-
|
|
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 = "my-project"
|
|
, dependencies =
|
|
[ "aff"
|
|
, "affjax"
|
|
, "console"
|
|
, "effect"
|
|
, "either"
|
|
, "foreign"
|
|
, "http-methods"
|
|
, "lists"
|
|
, "maybe"
|
|
, "media-types"
|
|
, "prelude"
|
|
, "psci-support"
|
|
, "simple-json"
|
|
, "strings"
|
|
, "transformers"
|
|
]
|
|
, packages = ./packages.dhall
|
|
, sources = [ "src/**/*.purs" ]
|
|
}
|