Files
karma/go.mod
Łukasz Mierzwa 0b724fdd86 fix(build): only install dev dependencies when needed
Right now both nodejs and Go dev dependencies (linters, test tools, etc.) are installed when building binaries.
This slows down everything, especially in CI.
Install nodejs dev deps only when needed by setting NODE_ENV=production during builds.
Install Go dev deps only when needed by splitting go.mod files per tool.
2020-06-25 14:52:22 +01:00

39 lines
1.5 KiB
Modula-2

module github.com/prymitive/karma
go 1.14
require (
github.com/DeanThompson/ginpprof v0.0.0-20190408063150-3be636683586
github.com/Masterminds/semver/v3 v3.1.0
github.com/certifi/gocertifi v0.0.0-20190905060710-a5e0173ced67 // indirect
github.com/cnf/structhash v0.0.0-20180104161610-62a607eb0224
github.com/elazarl/go-bindata-assetfs v1.0.1-0.20180223160309-38087fe4dafb
github.com/getsentry/raven-go v0.2.0
github.com/gin-contrib/cors v1.3.1
github.com/gin-contrib/gzip v0.0.2
github.com/gin-contrib/static v0.0.0-20191128031702-f81c604d8ac2
github.com/gin-gonic/contrib v0.0.0-20191209060500-d6e26eeaa607
github.com/gin-gonic/gin v1.6.3
github.com/go-openapi/errors v0.19.6
github.com/go-openapi/runtime v0.19.19
github.com/go-openapi/strfmt v0.19.5
github.com/go-openapi/swag v0.19.9
github.com/go-openapi/validate v0.19.10
github.com/google/go-cmp v0.5.0
github.com/hansrodtang/randomcolor v0.0.0-20160512071917-d27108b3d7a5
github.com/jarcoal/httpmock v1.0.5
github.com/knadh/koanf v0.10.0
github.com/mitchellh/mapstructure v1.3.2
github.com/patrickmn/go-cache v2.1.1-0.20180815053127-5633e0862627+incompatible
github.com/pmezard/go-difflib v1.0.0
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/common v0.10.0
github.com/rogpeppe/go-internal v1.6.0
github.com/sirupsen/logrus v1.6.0
github.com/spf13/pflag v1.0.5
github.com/xlab/handysort v0.0.0-20150421192137-fb3537ed64a1 // indirect
gopkg.in/go-playground/colors.v1 v1.2.0
gopkg.in/yaml.v2 v2.3.0
vbom.ml/util v0.0.0-20180919145318-efcd4e0f9787
)