2019-03-24 14:57:29 +01:00
|
|
|
module github.com/dosco/super-graph
|
|
|
|
|
|
|
|
require (
|
2020-05-23 17:43:57 +02:00
|
|
|
contrib.go.opencensus.io/exporter/aws v0.0.0-20190807220307-c50fb1bd7f21
|
|
|
|
contrib.go.opencensus.io/exporter/prometheus v0.1.0
|
|
|
|
contrib.go.opencensus.io/exporter/stackdriver v0.13.1
|
|
|
|
contrib.go.opencensus.io/exporter/zipkin v0.1.1
|
2020-05-22 22:49:54 +02:00
|
|
|
contrib.go.opencensus.io/integrations/ocsql v0.1.6
|
2020-04-23 07:42:16 +02:00
|
|
|
github.com/DATA-DOG/go-sqlmock v1.4.1
|
2019-09-27 08:19:24 +02:00
|
|
|
github.com/GeertJohan/go.rice v1.0.0
|
2019-12-31 07:30:20 +01:00
|
|
|
github.com/NYTimes/gziphandler v1.1.1
|
2019-03-29 03:34:42 +01:00
|
|
|
github.com/adjust/gorails v0.0.0-20171013043634-2786ed0c03d3
|
2019-10-01 06:00:15 +02:00
|
|
|
github.com/bradfitz/gomemcache v0.0.0-20190913173617-a41fca850d0b
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/brianvoe/gofakeit/v5 v5.2.0
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.1
|
2020-05-01 08:03:35 +02:00
|
|
|
github.com/chirino/graphql v0.0.0-20200430165312-293648399b1a
|
2019-10-01 06:00:15 +02:00
|
|
|
github.com/daaku/go.zipexe v1.0.1 // indirect
|
2019-03-24 14:57:29 +01:00
|
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible
|
2019-09-20 06:19:11 +02:00
|
|
|
github.com/dlclark/regexp2 v1.2.0 // indirect
|
2020-04-25 02:45:03 +02:00
|
|
|
github.com/dop251/goja v0.0.0-20200424152103-d0b8fda54cd0
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/fsnotify/fsnotify v1.4.9
|
2019-03-24 14:57:29 +01:00
|
|
|
github.com/garyburd/redigo v1.6.0
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
|
|
|
github.com/gobuffalo/flect v0.2.1
|
2020-04-17 16:56:26 +02:00
|
|
|
github.com/gosimple/slug v1.9.0
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/jackc/pgtype v1.3.0
|
|
|
|
github.com/jackc/pgx/v4 v4.6.0
|
|
|
|
github.com/mitchellh/mapstructure v1.2.2 // indirect
|
2020-05-23 17:43:57 +02:00
|
|
|
github.com/openzipkin/zipkin-go v0.2.2
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/pelletier/go-toml v1.7.0 // indirect
|
|
|
|
github.com/pkg/errors v0.9.1
|
2020-03-06 05:17:51 +01:00
|
|
|
github.com/rs/cors v1.7.0
|
2019-10-01 06:00:15 +02:00
|
|
|
github.com/spf13/afero v1.2.2 // indirect
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/spf13/cast v1.3.1 // indirect
|
|
|
|
github.com/spf13/cobra v1.0.0
|
|
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
2019-10-01 06:00:15 +02:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2020-04-16 07:28:55 +02:00
|
|
|
github.com/spf13/viper v1.6.3
|
2020-04-18 23:42:17 +02:00
|
|
|
github.com/stretchr/testify v1.5.1
|
2020-05-23 17:43:57 +02:00
|
|
|
go.opencensus.io v0.22.3
|
2020-04-10 08:27:43 +02:00
|
|
|
go.uber.org/zap v1.14.1
|
2020-04-16 07:28:55 +02:00
|
|
|
golang.org/x/crypto v0.0.0-20200414173820-0848c9571904
|
|
|
|
golang.org/x/sys v0.0.0-20200413165638-669c56c373c4 // indirect
|
|
|
|
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
|
2020-04-20 05:48:49 +02:00
|
|
|
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
|
2020-04-16 07:28:55 +02:00
|
|
|
gopkg.in/ini.v1 v1.55.0 // indirect
|
2019-03-24 14:57:29 +01:00
|
|
|
)
|
2019-09-27 08:19:24 +02:00
|
|
|
|
|
|
|
go 1.13
|