infoalloggi-monorepo/apps/backend/go.mod

50 lines
1.7 KiB
Modula-2
Raw Permalink Normal View History

2025-08-04 17:45:44 +02:00
module backend
2026-05-26 12:04:53 +02:00
go 1.25.10
2025-08-04 17:45:44 +02:00
require (
2026-05-19 10:59:47 +02:00
github.com/go-jet/jet/v2 v2.14.1
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.9.2
2025-08-04 17:45:44 +02:00
github.com/joho/godotenv v1.5.1
2026-05-19 10:59:47 +02:00
github.com/labstack/echo/v4 v4.15.2
github.com/lib/pq v1.12.3
2025-08-04 17:45:44 +02:00
)
require (
2026-05-19 10:59:47 +02:00
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gofrs/uuid/v5 v5.4.0 // indirect
2025-08-04 17:45:44 +02:00
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
2026-05-19 10:59:47 +02:00
github.com/kr/text v0.2.0 // indirect
github.com/nickalie/go-binwrapper v0.0.0-20260217210625-2cc2a03abe15 // indirect
2026-05-19 10:59:47 +02:00
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.14.1 // indirect
github.com/stretchr/testify v1.11.1 // indirect
golang.org/x/mod v0.36.0 // indirect
golang.org/x/sync v0.20.0 // indirect
2026-05-19 10:59:47 +02:00
golang.org/x/telemetry v0.0.0-20260508192327-42602be52be6 // indirect
2026-05-26 12:04:53 +02:00
golang.org/x/time v0.15.0 // indirect
2026-05-19 10:59:47 +02:00
golang.org/x/tools v0.45.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
2025-08-04 17:45:44 +02:00
)
require (
github.com/jackc/pgx-gofrs-uuid v0.0.0-20230224015001-1d428863c2e2
2026-05-26 12:04:53 +02:00
github.com/labstack/echo/v5 v5.1.1
github.com/labstack/gommon v0.5.0
github.com/mattn/go-colorable v0.1.14 // indirect
2026-05-19 10:59:47 +02:00
github.com/mattn/go-isatty v0.0.22 // indirect
2025-08-04 17:45:44 +02:00
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/nickalie/go-webpbin v0.0.0-20260302110202-4584fd694f25
2025-08-04 17:45:44 +02:00
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
2026-05-19 10:59:47 +02:00
golang.org/x/crypto v0.51.0 // indirect
golang.org/x/net v0.54.0 // indirect
golang.org/x/sys v0.44.0 // indirect
golang.org/x/text v0.37.0 // indirect
2025-08-04 17:45:44 +02:00
)
2026-05-19 10:59:47 +02:00
tool golang.org/x/tools/cmd/deadcode