This repository has been archived by the owner on Mar 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
board-game-planner.cabal
104 lines (101 loc) · 3.28 KB
/
board-game-planner.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: board-game-planner
version: 0.0.1.0
-- synopsis:
-- description:
homepage: https://github.com/cjduncana/board-game-planner#readme
license: MIT
license-file: LICENSE
author: Christopher Duncan
maintainer: cj.duncan.a@gmail.com
copyright: 2020 Christopher Duncan
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable board-game-planner-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N -fplugin=Polysemy.Plugin -flate-specialise -fspecialise-aggressively
build-depends: base >= 4 && < 5
, argon2
, bytestring
, containers
, crypto-rng
, email-validate
, HTTP
, http-client
, http-client-tls
, jwt
, morpheus-graphql
, mysql
, mysql-simple
, polysemy
, polysemy-plugin
, scotty
, text-short
, text
, time
, uuid
, xml-conduit
, xml-conduit-decode
default-extensions:
DataKinds
, DeriveAnyClass
, DeriveGeneric
, FlexibleContexts
, GADTs
, LambdaCase
, NamedFieldPuns
, OverloadedStrings
, PolyKinds
, RankNTypes
, ScopedTypeVariables
, TemplateHaskell
, TypeApplications
, TypeOperators
, TypeFamilies
default-language: Haskell2010
other-modules: Args.ListEvents
, Effects.BoardGameGeek
, Effects.CryptoHash
, Effects.Event
, Effects.EventGame
, Effects.EventPlayer
, Effects.User
, Environment
, Migration
, Mutation
, Query
, Resolver.Auth
, Resolver.BoardGame
, Resolver.Event
, Resolver.User
, Types.BoardGame
, Types.Coordinate
, Types.EmailAddress
, Types.Event
, Types.EventID
, Types.HashedPassword
, Types.JWT
, Types.NonEmptyText
, Types.Password
, Types.PositiveInteger
, Types.Time
, Types.User
, Types.Utils
, Types.UUID
test-suite board-game-planner-test
type: exitcode-stdio-1.0
hs-source-dirs: test
, app
main-is: Spec.hs
build-depends: base
, hspec
ghc-options: -threaded -O2 -rtsopts -with-rtsopts=-N
default-extensions:
OverloadedStrings
, QuasiQuotes
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/cjduncana/board-game-planner