Permalink
Cannot retrieve contributors at this time
63 lines (60 sloc)
2.72 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
gocommerce/go.mod
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |