forked from traggo/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
36 lines (34 loc) · 1.52 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
module github.com/traggo/server
require (
cloud.google.com/go v0.34.0 // indirect
github.com/99designs/gqlgen v0.9.0
github.com/agnivade/levenshtein v1.0.2 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20181014144952-4e0d7dc8888f // indirect
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
github.com/go-sql-driver/mysql v1.4.1 // indirect
github.com/gobuffalo/packr/v2 v2.2.0
github.com/gofrs/uuid v3.1.0+incompatible // indirect
github.com/google/go-cmp v0.2.0 // indirect
github.com/gorilla/mux v1.7.2
github.com/gorilla/websocket v1.4.0 // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/jinzhu/copier v0.0.0-20180308034124-7e38e58719c3
github.com/jinzhu/gorm v1.9.2
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3 // indirect
github.com/jmattheis/go-timemath v1.0.1
github.com/joho/godotenv v1.3.0
github.com/kelseyhightower/envconfig v1.3.0
github.com/lib/pq v1.0.0 // indirect
github.com/magiconair/properties v1.8.0
github.com/mattn/go-sqlite3 v1.10.0 // indirect
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/rs/zerolog v1.11.0
github.com/stretchr/testify v1.4.0
github.com/vektah/gqlparser v1.1.2
golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f
golang.org/x/sys v0.0.0-20190520201301-c432e742b0af // indirect
golang.org/x/tools v0.0.0-20190521171243-7927dbab1be7 // indirect
google.golang.org/appengine v1.3.0 // indirect
)
go 1.13