go.mod 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. module github.com/qor5/x
  2. go 1.19
  3. require (
  4. github.com/golang-jwt/jwt/v4 v4.4.2
  5. github.com/google/go-cmp v0.5.9
  6. github.com/google/uuid v1.3.0
  7. github.com/iancoleman/strcase v0.2.0
  8. github.com/jinzhu/inflection v1.0.0
  9. github.com/lib/pq v1.10.3
  10. github.com/manifoldco/promptui v0.9.0
  11. github.com/markbates/goth v1.75.1
  12. github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826
  13. github.com/ory/ladon v1.2.0
  14. github.com/pquerna/otp v1.3.0
  15. github.com/qor5/web v1.2.3
  16. github.com/spf13/cast v1.5.0
  17. github.com/stretchr/testify v1.8.0
  18. github.com/sunfmin/reflectutils v1.0.3
  19. github.com/theplant/htmlgo v1.0.3
  20. github.com/theplant/testingutils v0.0.0-20190603093022-26d8b4d95c61
  21. golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
  22. golang.org/x/text v0.8.0
  23. gorm.io/driver/postgres v1.4.5
  24. gorm.io/driver/sqlite v1.4.3
  25. gorm.io/gorm v1.24.1-0.20221019064659-5dd2bb482755
  26. )
  27. require (
  28. cloud.google.com/go v0.67.0 // indirect
  29. github.com/NYTimes/gziphandler v1.1.1 // indirect
  30. github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
  31. github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
  32. github.com/davecgh/go-spew v1.1.1 // indirect
  33. github.com/dlclark/regexp2 v1.4.0 // indirect
  34. github.com/go-playground/form v3.1.4+incompatible // indirect
  35. github.com/golang/protobuf v1.4.2 // indirect
  36. github.com/gorilla/context v1.1.1 // indirect
  37. github.com/gorilla/mux v1.6.2 // indirect
  38. github.com/gorilla/securecookie v1.1.1 // indirect
  39. github.com/gorilla/sessions v1.1.1 // indirect
  40. github.com/hashicorp/golang-lru v0.5.4 // indirect
  41. github.com/jackc/chunkreader/v2 v2.0.1 // indirect
  42. github.com/jackc/pgconn v1.13.0 // indirect
  43. github.com/jackc/pgio v1.0.0 // indirect
  44. github.com/jackc/pgpassfile v1.0.0 // indirect
  45. github.com/jackc/pgproto3/v2 v2.3.1 // indirect
  46. github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
  47. github.com/jackc/pgtype v1.12.0 // indirect
  48. github.com/jackc/pgx/v4 v4.17.2 // indirect
  49. github.com/jinzhu/now v1.1.5 // indirect
  50. github.com/mattn/go-sqlite3 v1.14.15 // indirect
  51. github.com/mrjones/oauth v0.0.0-20180629183705-f4e24b6d100c // indirect
  52. github.com/ory/pagination v0.0.1 // indirect
  53. github.com/pborman/uuid v1.2.1 // indirect
  54. github.com/pkg/errors v0.9.1 // indirect
  55. github.com/pmezard/go-difflib v1.0.0 // indirect
  56. golang.org/x/net v0.8.0 // indirect
  57. golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
  58. golang.org/x/sys v0.6.0 // indirect
  59. google.golang.org/appengine v1.6.6 // indirect
  60. google.golang.org/protobuf v1.25.0 // indirect
  61. gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
  62. gopkg.in/yaml.v3 v3.0.1 // indirect
  63. )
  64. //replace github.com/qor5/web => ../web
  65. //replace github.com/theplant/docgo => ../../docgo/