-
Notifications
You must be signed in to change notification settings - Fork 5
/
go.mod
33 lines (31 loc) · 1.37 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
module github.com/upvalue/meditations
require (
github.com/99designs/gqlgen v0.7.1
github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4 // indirect
github.com/functionalfoundry/graphqlws v0.0.0-20180830144941-4a19181eb54f
github.com/go-macaron/binding v1.0.1
github.com/go-macaron/pongo2 v0.0.0-20191101041146-a81b2720734b
github.com/google/uuid v1.1.0 // indirect
github.com/gorilla/websocket v1.4.0
github.com/graphql-go/graphql v0.7.7
github.com/graphql-go/handler v0.2.3
github.com/jinzhu/gorm v1.9.2
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
github.com/jinzhu/now v0.0.0-20181116074157-8ec929ed50c3
github.com/jmoiron/jsonq v0.0.0-20150511023944-e874b168d07e
github.com/juju/errors v0.0.0-20190930114154-d42613fe1ab9 // indirect
github.com/lib/pq v1.7.0 // indirect
github.com/mattn/go-colorable v0.0.9 // indirect
github.com/mattn/go-isatty v0.0.4 // indirect
github.com/mattn/go-sqlite3 v1.14.22
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect
github.com/sirupsen/logrus v1.3.0 // indirect
github.com/unknwon/com v1.0.1
github.com/urfave/cli v1.20.0
github.com/vektah/gqlparser v1.0.0 // indirect
github.com/x-cray/logrus-prefixed-formatter v0.5.2 // indirect
golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect
gopkg.in/ini.v1 v1.51.1 // indirect
gopkg.in/macaron.v1 v1.3.4
)
go 1.13