forked from thomasvvugt/fiber-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
43 lines (41 loc) · 1.69 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module fiber-boilerplate
go 1.16
require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/alexedwards/argon2id v0.0.0-20211130144151-3585854a6387
github.com/go-openapi/spec v0.20.7 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/goccy/go-json v0.10.0
github.com/gofiber/fiber/v2 v2.40.1
github.com/gofiber/helmet/v2 v2.2.22
github.com/gofiber/storage/memcache v0.0.0-20220210144513-cc5ccf062b5d
github.com/gofiber/storage/mysql v0.0.0-20220210144513-cc5ccf062b5d
github.com/gofiber/storage/postgres v0.0.0-20220210144513-cc5ccf062b5d
github.com/gofiber/storage/redis v0.0.0-20220210144513-cc5ccf062b5d
github.com/gofiber/storage/sqlite3 v0.0.0-20220210144513-cc5ccf062b5d
github.com/gofiber/swagger v0.1.8
github.com/gofiber/template v1.6.24
github.com/jameskeane/bcrypt v0.0.0-20120420032655-c3cd44c1e20f
github.com/klauspost/compress v1.15.13 // indirect
github.com/markbates/goth v1.75.2
github.com/rivo/uniseg v0.4.3 // indirect
github.com/shareed2k/goth_fiber v0.2.9
github.com/spf13/viper v1.10.1
github.com/stretchr/testify v1.8.1
github.com/swaggo/files v1.0.0 // indirect
github.com/swaggo/swag v1.8.9
github.com/thomasvvugt/fiber-hashing v0.0.0-20200511145001-a62bb48860d5
github.com/valyala/fasthttp v1.43.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
go.uber.org/zap v1.24.0
golang.org/dl v0.0.0-20221207214018-bd7282711064 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/oauth2 v0.3.0
golang.org/x/tools v0.4.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gorm.io/driver/mysql v1.3.2
gorm.io/driver/postgres v1.3.1
gorm.io/driver/sqlserver v1.3.1
gorm.io/gorm v1.23.2
)