-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.yaml
85 lines (79 loc) · 1.36 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
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
name: whichIsBetterAI
version: 0.1.0.0
author: Marco Perone
maintainer: [email protected]
extra-source-files:
- README.md
ghc-options:
-W
-Wall
-Werror
-fwrite-ide-info
-hiedir=.hie
default-extensions:
- OverloadedStrings
library:
source-dirs: src
dependencies:
- base >= 4.14 && < 5
- aeson
- bcrypt
- bytestring
- co-log-core
- containers
- dotenv
- extra
- hasql
- hasql-transaction
- http-client
- http-client-tls
- http-conduit
- http-types
- jose
- lens
- mtl
- openapi3
- openai-hs
- optparse-applicative
- postgresql-error-codes
- rel8
- random
- servant
- servant-auth
- servant-auth-server
- servant-openapi3
- servant-server
- text
- text-metrics
- time
- tomland
- transformers
- uuid
- wai
executables:
servant-template-exe:
source-dirs: app
main: Main.hs
dependencies:
- whichIsBetterAI
- bytestring
- hasql
- jose
- transformers
- wai-cors
- wai-extra
- warp
tests:
servant-template-spec:
main: Spec.hs
source-dirs: spec
dependencies:
- whichIsBetterAI
- containers
- hspec
- http-client
- http-types
- servant-auth-client
- servant-client
- servant-client-core
- warp