mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00:00
2dd1421b6e
To get the most simple deployment of excalidraw, the binary should ship all components (webUI, socket.io, data storage).
43 lines
1.6 KiB
Modula-2
43 lines
1.6 KiB
Modula-2
module excalidraw-complete
|
|
|
|
go 1.21
|
|
|
|
toolchain go1.22.1
|
|
|
|
require (
|
|
github.com/go-chi/chi/v5 v5.0.12
|
|
github.com/go-chi/cors v1.2.1
|
|
github.com/go-chi/render v1.0.3
|
|
github.com/oklog/ulid/v2 v2.1.0
|
|
github.com/zishang520/engine.io/v2 v2.0.6
|
|
github.com/zishang520/socket.io/v2 v2.0.5
|
|
)
|
|
|
|
require (
|
|
github.com/ajg/form v1.5.1 // indirect
|
|
github.com/andybalholm/brotli v1.0.6 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
|
|
github.com/google/pprof v0.0.0-20230821062121-407c9e7a662f // indirect
|
|
github.com/gookit/color v1.5.4 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.12.0 // indirect
|
|
github.com/quic-go/qpack v0.4.0 // indirect
|
|
github.com/quic-go/qtls-go1-20 v0.4.1 // indirect
|
|
github.com/quic-go/quic-go v0.40.1 // indirect
|
|
github.com/quic-go/webtransport-go v0.6.0 // indirect
|
|
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
|
|
github.com/zishang520/engine.io-go-parser v1.2.3 // indirect
|
|
github.com/zishang520/socket.io-go-parser/v2 v2.0.4 // indirect
|
|
go.uber.org/mock v0.3.0 // indirect
|
|
golang.org/x/crypto v0.17.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
|
|
golang.org/x/mod v0.12.0 // indirect
|
|
golang.org/x/net v0.17.0 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
golang.org/x/tools v0.12.1-0.20230815132531-74c255bcf846 // indirect
|
|
)
|