superkit/bootstrap/go.mod

27 lines
696 B
Modula-2
Raw Normal View History

2024-06-16 10:28:09 +02:00
module AABBCCDD
go 1.22.4
2024-06-16 11:18:34 +02:00
// uncomment for local development on the superkit core.
2024-06-23 11:01:24 +02:00
// replace github.com/anthdm/superkit => ../
2024-06-16 18:30:12 +02:00
require (
github.com/a-h/templ v0.2.731
2024-06-22 15:53:33 +02:00
github.com/anthdm/superkit v0.0.0-20240622052611-30be5bb82e0d
github.com/go-chi/chi/v5 v5.0.14
2024-06-20 17:37:03 +02:00
github.com/golang-jwt/jwt/v5 v5.2.1
2024-06-16 18:30:12 +02:00
github.com/google/uuid v1.6.0
github.com/joho/godotenv v1.5.1
github.com/mattn/go-sqlite3 v1.14.22
golang.org/x/crypto v0.24.0
2024-06-23 11:01:24 +02:00
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.25.10
2024-06-16 18:30:12 +02:00
)
require (
github.com/gorilla/securecookie v1.1.2 // indirect
2024-06-20 17:37:03 +02:00
github.com/gorilla/sessions v1.3.0 // indirect
2024-06-16 18:30:12 +02:00
github.com/jinzhu/inflection v1.0.0 // indirect
2024-06-23 10:53:56 +02:00
github.com/jinzhu/now v1.1.5 // indirect
2024-06-16 18:30:12 +02:00
)