-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
39 lines (32 loc) · 1.16 KB
/
go.mod
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
module github.com/gamediscounts
go 1.17
require github.com/tidwall/gjson v1.12.0
require github.com/gorilla/mux v1.8.0
require (
github.com/golang-jwt/jwt v3.2.2+incompatible
github.com/lib/pq v1.10.4
golang.org/x/crypto v0.0.0-20211202192323-5770296d904e
)
require github.com/leesper/couchdb-golang v1.2.1
require (
github.com/aymerick/douceur v0.2.0 // indirect
github.com/google/go-github/v35 v35.2.0 // indirect
github.com/google/go-querystring v1.0.0 // indirect
github.com/gorilla/css v1.0.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
google.golang.org/grpc v1.42.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
require (
github.com/golang-migrate/migrate/v4 v4.15.1
github.com/joho/godotenv v1.3.0
github.com/microcosm-cc/bluemonday v1.0.16
github.com/neo4j/neo4j-go-driver/v4 v4.4.0
github.com/rs/cors v1.8.0
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.0 // indirect
github.com/xhit/go-simple-mail/v2 v2.10.0
)