-
Notifications
You must be signed in to change notification settings - Fork 208
/
go.mod
63 lines (60 loc) · 2.72 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module github.com/netlify/gocommerce
require (
github.com/GoogleCloudPlatform/cloudsql-proxy v1.27.1
github.com/PuerkitoBio/goquery v1.1.0
github.com/go-chi/chi v4.0.2+incompatible
github.com/go-sql-driver/mysql v1.6.0
github.com/golang-jwt/jwt/v4 v4.2.0
github.com/jinzhu/gorm v1.9.10
github.com/joho/godotenv v1.3.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/lib/pq v1.10.4
github.com/mattes/vat v0.0.0-20160607175015-805d21ad0739
github.com/mattn/go-sqlite3 v1.10.0
github.com/mitchellh/mapstructure v1.1.2
github.com/netlify/PayPal-Go-SDK v0.0.0-20180614154051-732c3d08bf8a
github.com/netlify/mailme v1.1.1
github.com/pariz/gountries v0.0.0-20171019111738-adb00f6513a3
github.com/pborman/uuid v0.0.0-20160209185913-a97ce2ca70fa
github.com/pkg/errors v0.8.1
github.com/rs/cors v1.6.0
github.com/sebest/xff v0.0.0-20160910043805-6c115e0ffa35
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v0.0.4-0.20190321000552-67fc4837d267
github.com/stretchr/testify v1.7.0
github.com/stripe/stripe-go v62.9.0+incompatible
)
require (
cloud.google.com/go v0.99.0 // indirect
github.com/andybalholm/cascadia v0.0.0-20161224141413-349dd0209470 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/logpacker/PayPal-Go-SDK v2.0.5+incompatible // indirect
github.com/netlify/netlify-commons v0.32.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/spf13/pflag v1.0.3 // indirect
go.opencensus.io v0.23.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.19.1 // indirect
golang.org/x/net v0.0.0-20211020060615-d418f374d309 // indirect
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
golang.org/x/sys v0.0.0-20211209171907-798191bca915 // indirect
golang.org/x/text v0.3.6 // indirect
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
google.golang.org/api v0.61.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0 // indirect
google.golang.org/grpc v1.40.0 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/gomail.v2 v2.0.0-20150902115704-41f357289737 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
go 1.17