This repository was 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
Expand file tree
/
Copy pathgo.mod
More file actions
43 lines (40 loc) · 1.66 KB
/
go.mod
File metadata and controls
43 lines (40 loc) · 1.66 KB
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
module github.com/growerlab/backend
go 1.17
require (
github.com/99designs/gqlgen v0.10.2
github.com/Masterminds/squirrel v1.1.0
github.com/gin-gonic/gin v1.4.0
github.com/go-redis/redis/v7 v7.0.0-beta.5
github.com/go-sql-driver/mysql v1.6.0
github.com/google/uuid v1.1.1
github.com/graphql-go/graphql v0.7.8
github.com/growerlab/argon2 v0.1.3
github.com/ivpusic/grpool v1.0.0
github.com/jmoiron/sqlx v1.2.0
github.com/pkg/errors v0.8.1
github.com/stretchr/testify v1.6.1
github.com/vektah/gqlparser v1.2.0
gopkg.in/asaskevich/govalidator.v9 v9.0.0-20180315120708-ccb8e960c48f
gopkg.in/yaml.v2 v2.2.4
)
require (
github.com/agnivade/levenshtein v1.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 // indirect
github.com/golang/protobuf v1.3.2 // indirect
github.com/gorilla/websocket v1.2.0 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/json-iterator/go v1.1.6 // indirect
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
github.com/lib/pq v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.9 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/ugorji/go v1.1.4 // indirect
golang.org/x/crypto v0.0.0-20191219195013-becbf705a915 // indirect
golang.org/x/sys v0.0.0-20191223224216-5a3cf8467b4e // indirect
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)