-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
47 lines (41 loc) · 1 KB
/
package.yaml
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
name: haskell-ddd-order-taking
version: 0.1.0.0
github: "nakaakist/haskell-ddd-order-taking"
license: BSD3
author: "Nariyuki Saito"
maintainer: "[email protected]"
copyright: "2021 Nariyuki Saito"
extra-source-files:
- README.md
- ChangeLog.md
description: Please see the README on GitHub at <https://github.com/nakaakist/haskell-ddd-order-taking>
dependencies:
- base >= 4.7 && < 5
- scotty >= 0.12
- aeson >= 1.3.1.1
- text >= 1.2.4.1
- bytestring >= 0.10.12.0
- regex-tdfa ^>= 1.3.1.1
- email-validate >= 2.3.2.15
- transformers >= 0.5.6.2
- generic-lens >= 2.1.0.0
- lens >= 4.19.2
- mtl >= 2.2.2
- http-types >= 0.12.3
library:
source-dirs: src
executables:
haskell-ddd-order-taking-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- haskell-ddd-order-taking
tests:
haskell-ddd-order-taking-test:
defaults: hspec/hspec@master
dependencies:
- haskell-ddd-order-taking