123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- module github.com/qor5/docs
- go 1.19
- require (
- github.com/fatih/color v1.13.0
- github.com/go-chi/chi v1.5.4
- github.com/manifoldco/promptui v0.9.0
- github.com/markbates/goth v1.76.0
- github.com/ory/ladon v1.2.0
- github.com/qor/oss v0.0.0-20210412121326-3c5583a62015
- github.com/qor5/admin v0.0.0-20230420031413-a0401013364a
- github.com/qor5/ui v1.0.1-0.20230518014109-9c84f1e3851f
- github.com/qor5/web v1.2.4
- github.com/qor5/x v1.2.1-0.20230420023921-8f986dddfeaf
- github.com/shurcooL/sanitized_anchor_name v1.0.0
- github.com/sunfmin/reflectutils v1.0.3
- github.com/theplant/docgo v0.0.15
- github.com/theplant/htmlgo v1.0.3
- github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4
- golang.org/x/text v0.8.0
- gorm.io/driver/postgres v1.4.5
- gorm.io/driver/sqlite v1.4.3
- gorm.io/gorm v1.24.2
- )
- require (
- cloud.google.com/go v0.67.0
- github.com/NYTimes/gziphandler v1.1.1
- github.com/aws/aws-sdk-go v1.38.62
- github.com/aymerick/douceur v0.2.0
- github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
- github.com/chzyer/readline v1.5.1
- github.com/davecgh/go-spew v1.1.1
- github.com/disintegration/imaging v1.6.2
- github.com/dlclark/regexp2 v1.7.0
- github.com/go-playground/form v3.1.4+incompatible
- github.com/golang-jwt/jwt/v4 v4.4.2
- github.com/golang/protobuf v1.5.2
- github.com/google/uuid v1.3.0
- github.com/gorilla/context v1.1.1
- github.com/gorilla/css v1.0.0
- github.com/gorilla/mux v1.6.2
- github.com/gorilla/securecookie v1.1.1
- github.com/gorilla/sessions v1.2.0
- github.com/gosimple/slug v1.9.0
- github.com/hashicorp/golang-lru v0.5.4
- github.com/iancoleman/strcase v0.2.0
- github.com/jackc/chunkreader/v2 v2.0.1
- github.com/jackc/pgconn v1.13.0
- github.com/jackc/pgio v1.0.0
- github.com/jackc/pgpassfile v1.0.0
- github.com/jackc/pgproto3/v2 v2.3.1
- github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b
- github.com/jackc/pgtype v1.12.0
- github.com/jackc/pgx/v4 v4.17.2
- github.com/jinzhu/inflection v1.0.0
- github.com/jinzhu/now v1.1.5
- github.com/jmespath/go-jmespath v0.4.0
- github.com/lib/pq v1.10.7
- github.com/mattn/go-colorable v0.1.9
- github.com/mattn/go-isatty v0.0.14
- github.com/mattn/go-sqlite3 v1.14.16
- github.com/microcosm-cc/bluemonday v1.0.23
- github.com/ory/pagination v0.0.1
- github.com/pborman/uuid v1.2.1
- github.com/pkg/errors v0.9.1
- github.com/pmezard/go-difflib v1.0.0
- github.com/pquerna/otp v1.3.0
- github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be
- github.com/rogpeppe/go-internal v1.9.0
- github.com/rs/xid v1.4.0
- github.com/russross/blackfriday v1.6.0
- github.com/sergi/go-diff v1.2.0
- github.com/shurcooL/github_flavored_markdown v0.0.0-20210228213109-c3a9aa474629
- github.com/shurcooL/highlight_diff v0.0.0-20181222201841-111da2e7d480
- github.com/shurcooL/highlight_go v0.0.0-20191220051317-782971ddf21b
- github.com/shurcooL/octicon v0.0.0-20191102190552-cbb32d6a785c
- github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d
- github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e
- github.com/stretchr/testify v1.8.1
- github.com/theplant/sliceutils v0.0.0-20200406042209-89153d988eb1
- github.com/thoas/go-funk v0.9.2
- github.com/tnclong/go-que v0.0.0-20201111043106-1fc5fa2b9761
- go.uber.org/atomic v1.10.0
- go.uber.org/multierr v1.8.0
- go.uber.org/zap v1.24.0
- goji.io v2.0.2+incompatible
- golang.org/x/crypto v0.5.0
- golang.org/x/image v0.6.0
- golang.org/x/net v0.8.0
- golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
- golang.org/x/sys v0.6.0
- golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1
- google.golang.org/appengine v1.6.6
- google.golang.org/protobuf v1.26.0
- gopkg.in/yaml.v3 v3.0.1
- )
|