go.mod 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. module github.com/porter-dev/porter
  2. go 1.14
  3. require (
  4. github.com/cosmtrek/air v1.21.2 // indirect
  5. github.com/creack/pty v1.1.11 // indirect
  6. github.com/fatih/color v1.9.0 // indirect
  7. github.com/go-chi/chi v4.1.2+incompatible
  8. github.com/go-playground/locales v0.13.0
  9. github.com/go-playground/universal-translator v0.17.0
  10. github.com/go-playground/validator/v10 v10.3.0
  11. github.com/imdario/mergo v0.3.11 // indirect
  12. github.com/jinzhu/gorm v1.9.16
  13. github.com/joeshaw/envdecode v0.0.0-20200121155833-099f1fc765bd
  14. github.com/leodido/go-urn v1.2.0 // indirect
  15. github.com/mattn/go-colorable v0.1.7 // indirect
  16. github.com/pelletier/go-toml v1.8.1 // indirect
  17. github.com/rs/zerolog v1.20.0
  18. golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a // indirect
  19. golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect
  20. golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 // indirect
  21. golang.org/x/sys v0.0.0-20200923182605-d9f96fdee20d // indirect
  22. golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect
  23. gopkg.in/go-playground/validator.v9 v9.31.0
  24. gopkg.in/yaml.v2 v2.3.0
  25. gorm.io/driver/postgres v1.0.1
  26. gorm.io/gorm v1.20.1
  27. k8s.io/apimachinery v0.19.2
  28. k8s.io/client-go v0.0.0-20200917000235-cba7285b7f29
  29. k8s.io/klog v1.0.0 // indirect
  30. k8s.io/utils v0.0.0-20200912215256-4140de9c8800 // indirect
  31. )