41 lines
1.4 KiB
Modula-2
41 lines
1.4 KiB
Modula-2
module jannex/admin-dashboard-backend
|
|
|
|
go 1.21.0
|
|
|
|
require (
|
|
git.ex.umbach.dev/Alex/roese-utils v1.0.11
|
|
github.com/gofiber/fiber/v2 v2.49.2
|
|
github.com/gofiber/websocket/v2 v2.1.6
|
|
github.com/google/uuid v1.3.1
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/rs/zerolog v1.31.0
|
|
github.com/savsgio/gotils v0.0.0-20230208104028-c358bd845dee
|
|
golang.org/x/crypto v0.7.0
|
|
gorm.io/driver/mysql v1.5.0
|
|
gorm.io/gorm v1.25.5
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.5 // indirect
|
|
github.com/fasthttp/websocket v1.5.2 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/go-playground/validator/v10 v10.15.5 // indirect
|
|
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/klauspost/compress v1.16.7 // indirect
|
|
github.com/leodido/go-urn v1.2.4 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.49.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/net v0.8.0 // indirect
|
|
golang.org/x/sys v0.12.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
)
|