Created
April 29, 2019 13:30
-
-
Save goertzenator/405d40c36708e1f7d2e325d934a798e5 to your computer and use it in GitHub Desktop.
backend.cabal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Initial backend.cabal generated by cabal init. For further | |
-- documentation, see http://haskell.org/cabal/users-guide/ | |
-- The name of the package. | |
name: backend | |
-- The package version. See the Haskell package versioning policy (PVP) | |
-- for standards guiding when and how versions should be incremented. | |
-- https://wiki.haskell.org/Package_versioning_policy | |
-- PVP summary: +-+------- breaking API changes | |
-- | | +----- non-breaking API additions | |
-- | | | +--- code changes with no API change | |
version: 0.1.0.0 | |
-- A short (one-line) description of the package. | |
-- synopsis: | |
-- A longer description of the package. | |
-- description: | |
-- The license under which the package is released. | |
license: BSD3 | |
-- The file containing the license text. | |
license-file: LICENSE | |
-- The package author(s). | |
author: Daniel Goertzen | |
-- An email address to which users can send suggestions, bug reports, and | |
-- patches. | |
maintainer: [email protected] | |
-- A copyright notice. | |
-- copyright: | |
-- category: | |
build-type: Simple | |
-- Extra files to be distributed with the package, such as examples or a | |
-- README. | |
extra-source-files: ChangeLog.md | |
-- Constraint on the version of Cabal needed to build this package. | |
cabal-version: >=1.10 | |
executable backend | |
-- .hs or .lhs file containing the Main module. | |
main-is: Main.hs | |
-- Modules included in this executable, other than Main. | |
-- other-modules: | |
-- LANGUAGE extensions used by modules in this package. | |
-- other-extensions: | |
-- Other library packages from which modules are imported. | |
build-depends: base | |
, common | |
, reflex-dom | |
, aeson | |
, attoparsec | |
, base-compat | |
, bytestring | |
, containers | |
, directory | |
, http-api-data | |
, http-client | |
, http-media | |
, http-types | |
, mtl | |
, string-conversions | |
, text | |
, transformers | |
, wai | |
, warp | |
, servant | |
, servant-server | |
, servant-client | |
, servant-docs | |
, blaze-html >= 0.9.0.1 && < 0.10 | |
, blaze-markup >= 0.8.0.0 && < 0.9 | |
, cookie >= 0.4.3 && < 0.5 | |
, js-jquery >= 3.2.1 && < 3.3 | |
, lucid >= 2.9.11 && < 2.10 | |
, random >= 1.1 && < 1.2 | |
, servant-js >= 0.9 && < 0.10 | |
, time >= 1.6.0.1 && < 1.9 | |
build-depends: markdown-unlit >= 0.5.0 && <0.6 | |
build-tool-depends: markdown-unlit:markdown-unlit >= 0.5.0 && <0.6 | |
-- Directories containing source files. | |
hs-source-dirs: src | |
-- Base language which the package is written in. | |
default-language: Haskell2010 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment