-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
34 lines (31 loc) · 1.22 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
module github.com/kevincobain2000/go-app-reviews-scraper
go 1.22
require (
github.com/JohannesKaufmann/html-to-markdown v1.5.0
github.com/PuerkitoBio/goquery v1.9.0
github.com/araddon/dateparse v0.0.0-20210429162001-6b43995a97de
github.com/headzoo/surf v1.0.1
github.com/joho/godotenv v1.5.1
github.com/kevincobain2000/go-msteams v0.0.0-20231124044510-4369c04dd224
github.com/n0madic/google-play-scraper v0.0.0-20231014122808-52dbf3ade79b
github.com/stretchr/testify v1.7.2
gorm.io/driver/mysql v1.5.4
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.7
)
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/headzoo/ut v0.0.0-20181013193318-a13b5a7a02ca // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/k3a/html2text v1.2.1 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/tidwall/gjson v1.17.1 // indirect
github.com/tidwall/match v1.1.1 // indirect
github.com/tidwall/pretty v1.2.1 // indirect
golang.org/x/net v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)