-
Notifications
You must be signed in to change notification settings - Fork 60
/
go.mod
65 lines (62 loc) · 2.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
module github.com/stakwork/sphinx-tribes
go 1.2
require (
github.com/DATA-DOG/go-sqlmock v1.5.1
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/aws/aws-sdk-go-v2 v1.25.2
github.com/aws/aws-sdk-go-v2/config v1.27.4
github.com/aws/aws-sdk-go-v2/credentials v1.17.4
github.com/aws/aws-sdk-go-v2/service/s3 v1.51.1
github.com/btcsuite/btcd/btcec/v2 v2.3.2
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.3
github.com/fatih/structs v1.1.0
github.com/fiatjaf/go-lnurl v1.13.0
github.com/form3tech-oss/jwt-go v3.2.5+incompatible
github.com/go-chi/chi v1.5.5
github.com/go-chi/jwtauth v1.2.0
github.com/go-co-op/gocron v1.37.0
github.com/gobuffalo/packr/v2 v2.8.3
github.com/google/go-github/v39 v39.2.0
github.com/google/uuid v1.4.0
github.com/gorilla/websocket v1.5.1
github.com/h2non/gock v1.2.0
github.com/imroc/req v0.3.2
github.com/jinzhu/gorm v1.9.16
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.10.9
github.com/nbd-wtf/ln-decodepay v1.11.1
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/redis/go-redis/v9 v9.3.0
github.com/rs/cors v1.10.1
github.com/rs/xid v1.5.0
github.com/stretchr/testify v1.8.4
github.com/tuan78/jsonconv v1.0.2
golang.org/x/oauth2 v0.15.0
google.golang.org/api v0.153.0
gopkg.in/go-playground/validator.v9 v9.31.0
gorm.io/driver/postgres v1.5.4
gorm.io/gorm v1.25.5
)
require (
cloud.google.com/go/compute/metadata v0.5.0 // indirect
github.com/btcsuite/btcd v0.23.5-0.20230905170901-80f5a0ffdf36 // indirect
github.com/btcsuite/btcd/btcutil v1.1.4-0.20230904040416-d4f519f5dc05 // indirect
github.com/btcsuite/btcwallet v0.16.10-0.20230804184612-07be54bc22cf // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/lightninglabs/neutrino v0.16.0 // indirect
github.com/lightningnetwork/lightning-onion v1.2.1-0.20230823005744-06182b1d7d2f // indirect
github.com/lightningnetwork/lnd v0.16.4-beta.rc1 // indirect
github.com/lightningnetwork/lnd/clock v1.1.1 // indirect
github.com/lightningnetwork/lnd/healthcheck v1.2.3 // indirect
github.com/lightningnetwork/lnd/kvdb v1.4.4 // indirect
github.com/lightningnetwork/lnd/queue v1.1.1 // indirect
github.com/lightningnetwork/lnd/ticker v1.1.1 // indirect
github.com/lightningnetwork/lnd/tlv v1.1.1 // indirect
github.com/lightningnetwork/lnd/tor v1.1.2 // indirect
github.com/onsi/gomega v1.26.0 // indirect
github.com/robfig/cron v1.2.0
golang.org/x/exp v0.0.0-20230315142452-642cacee5cc0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
)