├── .gitignore ├── Dockerfile ├── cmd └── dev-server │ └── dev-server.go ├── go.mod ├── go.sum ├── readme.md └── web ├── package-lock.json ├── package.json ├── static ├── main.css └── tailwind.css ├── tailwind.config.js └── templates └── index.tpl.html /.gitignore: -------------------------------------------------------------------------------- 1 | /web/node_modules 2 | /web/package-lock.json 3 | /dev-server* -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | # Build stage 2 | 3 | FROM golang:1.16.7-buster AS build-env 4 | RUN mkdir -p /go/src/ssr-golang 5 | WORKDIR /go/src/ssr-golang 6 | COPY . . 7 | RUN GO111MODULE=on go mod vendor && env CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o goserver ./cmd/dev-server/dev-server.go 8 | 9 | FROM debian:9-slim 10 | RUN apt-get update && apt-get install -y ca-certificates 11 | COPY --from=build-env /go/src/ssr-golang/goserver /app/goserver 12 | COPY ./web /app/web/ 13 | WORKDIR /app 14 | EXPOSE 8080 15 | ENTRYPOINT [ "/app/goserver" ] -------------------------------------------------------------------------------- /cmd/dev-server/dev-server.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import ( 4 | "flag" 5 | "fmt" 6 | "github.com/ViBiOh/httputils/v4/pkg/prometheus" 7 | "html/template" 8 | "io/ioutil" 9 | "log" 10 | "net/http" 11 | "os" 12 | "os/exec" 13 | "runtime" 14 | "strings" 15 | "time" 16 | 17 | "github.com/gorilla/mux" 18 | ) 19 | 20 | const ( 21 | templateFolder = "./web/templates" 22 | resourceFolder = "./web/static" 23 | localPort = ":8080" 24 | refreshInterval = 1 * time.Second 25 | openOn = "index" 26 | ) 27 | 28 | func main() { 29 | log.Println("dev-server started on port ", localPort) 30 | needsRefresh := false 31 | // Folder watcher 32 | go func() { 33 | fileWatch := map[string]time.Time{} 34 | for { 35 | time.Sleep(3 * time.Second) 36 | f, err := os.Open(templateFolder) 37 | if err != nil { 38 | log.Fatal("Couldnt open templateFolder", err) 39 | } 40 | files, _ := f.Readdir(-1) 41 | f.Close() 42 | 43 | for _, file := range files { 44 | info, _ := os.Stat(f.Name() + "/" + file.Name()) 45 | if err != nil { 46 | // TODO: handle errors (e.g. file not found) 47 | log.Fatal("Couldnt stat file", err) 48 | } 49 | if info.ModTime().After(fileWatch[file.Name()]) { 50 | fileWatch[file.Name()] = info.ModTime() 51 | needsRefresh = true 52 | } 53 | } 54 | } 55 | }() 56 | 57 | router := mux.NewRouter().StrictSlash(true) 58 | staticRouter := router.PathPrefix("/static/") 59 | staticRouter.Handler(http.StripPrefix("/static/", http.FileServer(http.Dir(resourceFolder)))) 60 | 61 | fs := flag.NewFlagSet("dev-server", flag.ExitOnError) 62 | prometheusConfig := prometheus.Flags(fs, "prometheus") 63 | prometheusApp := prometheus.New(prometheusConfig) 64 | 65 | router.Handle("/metrics", prometheusApp.Handler()).Methods(http.MethodGet) 66 | 67 | router.HandleFunc("/reload", func(wr http.ResponseWriter, req *http.Request) { 68 | if needsRefresh { 69 | log.Println("Forcing reload") 70 | wr.WriteHeader(http.StatusUpgradeRequired) 71 | return 72 | } 73 | // Weird quirk but with an empty response and status code for no content, Chrome still views it 74 | // as a failed load 75 | fmt.Fprint(wr, "{}") 76 | }).Methods(http.MethodGet) 77 | router.HandleFunc("/reload.js", func(wr http.ResponseWriter, req *http.Request) { 78 | fmt.Fprintf(wr, fmt.Sprintf(` 79 | setInterval(function() { 80 | fetch("/reload") 81 | .then(function (res) { 82 | if (res.status == 426) { 83 | window.location.reload(true); 84 | } 85 | }) 86 | }, %d); 87 | `, refreshInterval.Milliseconds())) 88 | needsRefresh = false 89 | }).Methods(http.MethodGet) 90 | 91 | router.HandleFunc("/{template_name}", func(wr http.ResponseWriter, req *http.Request) { 92 | 93 | templateName := mux.Vars(req)["template_name"] 94 | templatePath := fmt.Sprintf("%s/%s.tpl.html", templateFolder, templateName) 95 | templateFileContents, err := ioutil.ReadFile(templatePath) 96 | if err != nil { 97 | fmt.Fprintf(wr, "Can't read file '%s' - %s", templatePath, err) 98 | return 99 | } 100 | // Load and inject JS 101 | tmpl, err := template.New(templateName).Parse( 102 | strings.Replace(string(templateFileContents), "", ``, 1)) 103 | if err != nil || tmpl == nil { 104 | fmt.Fprintf(wr, "Can't find template '%s' - %s", templateName, err) 105 | return 106 | } 107 | _, err = tmpl.ParseGlob(fmt.Sprintf("%s/*", templateFolder)) 108 | if err != nil { 109 | fmt.Fprintf(wr, "Can't load more template '%s' - %s", templateName, err) 110 | return 111 | } 112 | err = tmpl.ExecuteTemplate(wr, templateName, nil) 113 | if err != nil { 114 | fmt.Fprintf(wr, "Can't exec templatePath '%s' - %s", templateName, err) 115 | return 116 | } 117 | }).Methods(http.MethodGet) 118 | 119 | // Disable Caching of results 120 | router.Use( 121 | func(next http.Handler) http.Handler { 122 | return http.HandlerFunc(func(wr http.ResponseWriter, req *http.Request) { 123 | wr.Header().Set("Cache-Control", "max-age=0, must-revalidate") 124 | next.ServeHTTP(wr, req) 125 | }) 126 | }, 127 | ) 128 | 129 | devSrv := http.Server{ 130 | Addr: localPort, 131 | Handler: router, 132 | ReadTimeout: 10 * time.Second, 133 | WriteTimeout: 120 * time.Second, 134 | MaxHeaderBytes: 1 << 20, 135 | } 136 | 137 | // Open localhost and start server 138 | go open(fmt.Sprintf("http://localhost%s/%s", localPort, openOn)) 139 | devSrv.ListenAndServe() 140 | } 141 | 142 | // open opens the specified URL in the default browser of the user. 143 | func open(url string) error { 144 | var cmd string 145 | var args []string 146 | 147 | switch runtime.GOOS { 148 | case "windows": 149 | cmd = "cmd" 150 | args = []string{"/c", "start"} 151 | case "darwin": 152 | cmd = "open" 153 | default: // "linux", "freebsd", "openbsd", "netbsd" 154 | cmd = "xdg-open" 155 | } 156 | args = append(args, url) 157 | return exec.Command(cmd, args...).Start() 158 | } 159 | -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/17twenty/bizfi 2 | 3 | go 1.16 4 | 5 | require ( 6 | github.com/ViBiOh/httputils/v4 v4.22.3 7 | github.com/gorilla/mux v1.8.0 8 | ) 9 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= 2 | github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= 3 | github.com/ViBiOh/httputils/v4 v4.22.3 h1:RndEnbIQT9x9z5n0gi0BTafDJLdSzq3oOwlM9rlMLrE= 4 | github.com/ViBiOh/httputils/v4 v4.22.3/go.mod h1:EHlIJgVJJATWyXZXzd+J4+Jl0Yz6Q790WydE+Y/3FFo= 5 | github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= 6 | github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= 7 | github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= 8 | github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= 9 | github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= 10 | github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= 11 | github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= 12 | github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= 13 | github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= 14 | github.com/cespare/xxhash/v2 v2.1.1 h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY= 15 | github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= 16 | github.com/cheekybits/is v0.0.0-20150225183255-68e9c0620927/go.mod h1:h/aW8ynjgkuj+NQRlZcDbAbM1ORAbXjXX77sX7T289U= 17 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 18 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= 19 | github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= 20 | github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= 21 | github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= 22 | github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= 23 | github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= 24 | github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= 25 | github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= 26 | github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= 27 | github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= 28 | github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= 29 | github.com/go-redis/redis/v8 v8.11.3/go.mod h1:xNJ9xDG09FsIPwh3bWdk+0oDWHbtF9rPN0F/oD9XeKc= 30 | github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= 31 | github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE= 32 | github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= 33 | github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= 34 | github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 35 | github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 36 | github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= 37 | github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= 38 | github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= 39 | github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= 40 | github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= 41 | github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= 42 | github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= 43 | github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= 44 | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= 45 | github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= 46 | github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= 47 | github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= 48 | github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= 49 | github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 50 | github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 51 | github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 52 | github.com/google/go-cmp v0.5.6 h1:BKbKCqvP6I+rmFHt06ZmyQtvB8xAkWdhFyr0ZUNZcxQ= 53 | github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= 54 | github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= 55 | github.com/gorilla/mux v1.8.0 h1:i40aqfkR1h2SlN9hojwV5ZA91wcXFOvkdNIeFDP5koI= 56 | github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= 57 | github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= 58 | github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= 59 | github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= 60 | github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= 61 | github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= 62 | github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= 63 | github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= 64 | github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= 65 | github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= 66 | github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= 67 | github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= 68 | github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= 69 | github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= 70 | github.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o= 71 | github.com/matryer/try v0.0.0-20161228173917-9ac251b645a2/go.mod h1:0KeJpeMD6o+O4hW7qJOT7vyQPKrWmj26uf5wMc/IiIs= 72 | github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= 73 | github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= 74 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= 75 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= 76 | github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= 77 | github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= 78 | github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= 79 | github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= 80 | github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= 81 | github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU= 82 | github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= 83 | github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= 84 | github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= 85 | github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= 86 | github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= 87 | github.com/onsi/gomega v1.15.0/go.mod h1:cIuvLEne0aoVhAgh/O6ac0Op8WWw9H6eYCriF+tEHG0= 88 | github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 89 | github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 90 | github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= 91 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= 92 | github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= 93 | github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= 94 | github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= 95 | github.com/prometheus/client_golang v1.11.0 h1:HNkLOAEQMIDv/K+04rukrLx6ch7msSRwf3/SASFAGtQ= 96 | github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= 97 | github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= 98 | github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= 99 | github.com/prometheus/client_model v0.2.0 h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M= 100 | github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= 101 | github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= 102 | github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= 103 | github.com/prometheus/common v0.26.0 h1:iMAkS2TDoNWnKM+Kopnx/8tnEStIfpYA0ur0xQzzhMQ= 104 | github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= 105 | github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= 106 | github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= 107 | github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= 108 | github.com/prometheus/procfs v0.6.0 h1:mxy4L2jP6qMonqmq+aTtOx1ifVWUgG/TAmntgbh3xv4= 109 | github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= 110 | github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= 111 | github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= 112 | github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= 113 | github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= 114 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= 115 | github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= 116 | github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= 117 | github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= 118 | github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= 119 | github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= 120 | github.com/tdewolff/minify/v2 v2.9.21/go.mod h1:PoDBts2L7sCwUT28vTAlozGeD6qxjrrihtin4bR/RMM= 121 | github.com/tdewolff/parse/v2 v2.5.19/go.mod h1:WzaJpRSbwq++EIQHYIRTpbYKNA3gn9it1Ik++q4zyho= 122 | github.com/tdewolff/test v1.0.6/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYqeK4QE= 123 | github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= 124 | github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= 125 | golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= 126 | golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= 127 | golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= 128 | golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= 129 | golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= 130 | golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= 131 | golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 132 | golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 133 | golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 134 | golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= 135 | golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= 136 | golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= 137 | golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= 138 | golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= 139 | golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= 140 | golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= 141 | golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= 142 | golang.org/x/net v0.0.0-20210428140749-89ef3d95e781/go.mod h1:OJAsFXCWl8Ukc7SiCT/9KSuxbyM7479/AVlXFRxuMCk= 143 | golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= 144 | golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 145 | golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 146 | golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 147 | golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 148 | golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 149 | golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 150 | golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 151 | golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= 152 | golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 153 | golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 154 | golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 155 | golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= 156 | golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 157 | golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 158 | golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 159 | golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 160 | golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 161 | golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 162 | golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 163 | golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 164 | golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 165 | golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 166 | golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 167 | golang.org/x/sys v0.0.0-20210112080510-489259a85091/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 168 | golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 169 | golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 170 | golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= 171 | golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 172 | golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40 h1:JWgyZ1qgdTaF3N3oxC+MdTV7qvEEgHo3otj+HB5CM7Q= 173 | golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= 174 | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= 175 | golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= 176 | golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= 177 | golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= 178 | golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= 179 | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= 180 | golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= 181 | golang.org/x/tools v0.0.0-20201224043029-2b0845dc783e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= 182 | golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= 183 | golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 184 | golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 185 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 186 | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= 187 | golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= 188 | google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= 189 | google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= 190 | google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= 191 | google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= 192 | google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= 193 | google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= 194 | google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= 195 | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= 196 | google.golang.org/protobuf v1.26.0 h1:bxAC2xTBsZGibn2RTntX0oH50xLsqy1OxA9tTL3p/lk= 197 | google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= 198 | gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= 199 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 200 | gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= 201 | gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= 202 | gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= 203 | gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 204 | gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 205 | gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 206 | gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 207 | gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= 208 | gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= 209 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # LiveReload + Tailwind + Golang 2 | 3 | ## Installation 4 | 5 | ```bash 6 | cd web 7 | npm install 8 | ``` 9 | 10 | ## Developing Pages 11 | 12 | Best to use two consoles 13 | 14 | ```bash 15 | npm run dev 16 | ``` 17 | 18 | ```bash 19 | go build ./cmd/dev-server/ 20 | ./dev-server 21 | 2021/07/23 19:22:53 dev-server started on port :8080 22 | ``` 23 | 24 | The page should open automatically to the /index template 25 | 26 | ## Building for production 27 | 28 | ```bash 29 | npm run build 30 | 31 | > build 32 | > NODE_ENV=production ./node_modules/tailwindcss/lib/cli.js -i ./static/tailwind.css -o ./static/main.css --jit --minify 33 | 34 | 35 | warn - You have enabled the JIT engine which is currently in preview. 36 | warn - Preview features are not covered by semver, may introduce breaking changes, and can change at any time. 37 | 38 | Done in 189ms. 39 | ``` 40 | -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web", 3 | "lockfileVersion": 2, 4 | "requires": true, 5 | "packages": { 6 | "": { 7 | "dependencies": { 8 | "@tailwindcss/forms": "^0.3.3", 9 | "tailwindcss": "^2.2.6" 10 | } 11 | }, 12 | "node_modules/@babel/code-frame": { 13 | "version": "7.14.5", 14 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", 15 | "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", 16 | "dependencies": { 17 | "@babel/highlight": "^7.14.5" 18 | }, 19 | "engines": { 20 | "node": ">=6.9.0" 21 | } 22 | }, 23 | "node_modules/@babel/helper-validator-identifier": { 24 | "version": "7.14.8", 25 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz", 26 | "integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==", 27 | "engines": { 28 | "node": ">=6.9.0" 29 | } 30 | }, 31 | "node_modules/@babel/highlight": { 32 | "version": "7.14.5", 33 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", 34 | "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", 35 | "dependencies": { 36 | "@babel/helper-validator-identifier": "^7.14.5", 37 | "chalk": "^2.0.0", 38 | "js-tokens": "^4.0.0" 39 | }, 40 | "engines": { 41 | "node": ">=6.9.0" 42 | } 43 | }, 44 | "node_modules/@babel/highlight/node_modules/ansi-styles": { 45 | "version": "3.2.1", 46 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 47 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 48 | "dependencies": { 49 | "color-convert": "^1.9.0" 50 | }, 51 | "engines": { 52 | "node": ">=4" 53 | } 54 | }, 55 | "node_modules/@babel/highlight/node_modules/chalk": { 56 | "version": "2.4.2", 57 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 58 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 59 | "dependencies": { 60 | "ansi-styles": "^3.2.1", 61 | "escape-string-regexp": "^1.0.5", 62 | "supports-color": "^5.3.0" 63 | }, 64 | "engines": { 65 | "node": ">=4" 66 | } 67 | }, 68 | "node_modules/@babel/highlight/node_modules/color-convert": { 69 | "version": "1.9.3", 70 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 71 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 72 | "dependencies": { 73 | "color-name": "1.1.3" 74 | } 75 | }, 76 | "node_modules/@babel/highlight/node_modules/color-name": { 77 | "version": "1.1.3", 78 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 79 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 80 | }, 81 | "node_modules/@babel/highlight/node_modules/has-flag": { 82 | "version": "3.0.0", 83 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 84 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 85 | "engines": { 86 | "node": ">=4" 87 | } 88 | }, 89 | "node_modules/@babel/highlight/node_modules/supports-color": { 90 | "version": "5.5.0", 91 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 92 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 93 | "dependencies": { 94 | "has-flag": "^3.0.0" 95 | }, 96 | "engines": { 97 | "node": ">=4" 98 | } 99 | }, 100 | "node_modules/@nodelib/fs.scandir": { 101 | "version": "2.1.5", 102 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 103 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 104 | "dependencies": { 105 | "@nodelib/fs.stat": "2.0.5", 106 | "run-parallel": "^1.1.9" 107 | }, 108 | "engines": { 109 | "node": ">= 8" 110 | } 111 | }, 112 | "node_modules/@nodelib/fs.stat": { 113 | "version": "2.0.5", 114 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 115 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 116 | "engines": { 117 | "node": ">= 8" 118 | } 119 | }, 120 | "node_modules/@nodelib/fs.walk": { 121 | "version": "1.2.8", 122 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 123 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 124 | "dependencies": { 125 | "@nodelib/fs.scandir": "2.1.5", 126 | "fastq": "^1.6.0" 127 | }, 128 | "engines": { 129 | "node": ">= 8" 130 | } 131 | }, 132 | "node_modules/@tailwindcss/forms": { 133 | "version": "0.3.3", 134 | "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.3.3.tgz", 135 | "integrity": "sha512-U8Fi/gq4mSuaLyLtFISwuDYzPB73YzgozjxOIHsK6NXgg/IWD1FLaHbFlWmurAMyy98O+ao74ksdQefsquBV1Q==", 136 | "dependencies": { 137 | "mini-svg-data-uri": "^1.2.3" 138 | }, 139 | "peerDependencies": { 140 | "tailwindcss": ">=2.0.0" 141 | } 142 | }, 143 | "node_modules/@types/parse-json": { 144 | "version": "4.0.0", 145 | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", 146 | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" 147 | }, 148 | "node_modules/acorn": { 149 | "version": "7.4.1", 150 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 151 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", 152 | "bin": { 153 | "acorn": "bin/acorn" 154 | }, 155 | "engines": { 156 | "node": ">=0.4.0" 157 | } 158 | }, 159 | "node_modules/acorn-node": { 160 | "version": "1.8.2", 161 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", 162 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", 163 | "dependencies": { 164 | "acorn": "^7.0.0", 165 | "acorn-walk": "^7.0.0", 166 | "xtend": "^4.0.2" 167 | } 168 | }, 169 | "node_modules/acorn-walk": { 170 | "version": "7.2.0", 171 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", 172 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", 173 | "engines": { 174 | "node": ">=0.4.0" 175 | } 176 | }, 177 | "node_modules/ansi-styles": { 178 | "version": "4.3.0", 179 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 180 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 181 | "dependencies": { 182 | "color-convert": "^2.0.1" 183 | }, 184 | "engines": { 185 | "node": ">=8" 186 | }, 187 | "funding": { 188 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 189 | } 190 | }, 191 | "node_modules/anymatch": { 192 | "version": "3.1.2", 193 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 194 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 195 | "dependencies": { 196 | "normalize-path": "^3.0.0", 197 | "picomatch": "^2.0.4" 198 | }, 199 | "engines": { 200 | "node": ">= 8" 201 | } 202 | }, 203 | "node_modules/arg": { 204 | "version": "5.0.0", 205 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz", 206 | "integrity": "sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ==" 207 | }, 208 | "node_modules/autoprefixer": { 209 | "version": "10.3.1", 210 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.1.tgz", 211 | "integrity": "sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==", 212 | "peer": true, 213 | "dependencies": { 214 | "browserslist": "^4.16.6", 215 | "caniuse-lite": "^1.0.30001243", 216 | "colorette": "^1.2.2", 217 | "fraction.js": "^4.1.1", 218 | "normalize-range": "^0.1.2", 219 | "postcss-value-parser": "^4.1.0" 220 | }, 221 | "bin": { 222 | "autoprefixer": "bin/autoprefixer" 223 | }, 224 | "engines": { 225 | "node": "^10 || ^12 || >=14" 226 | }, 227 | "funding": { 228 | "type": "opencollective", 229 | "url": "https://opencollective.com/postcss/" 230 | }, 231 | "peerDependencies": { 232 | "postcss": "^8.1.0" 233 | } 234 | }, 235 | "node_modules/balanced-match": { 236 | "version": "1.0.2", 237 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 238 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 239 | }, 240 | "node_modules/binary-extensions": { 241 | "version": "2.2.0", 242 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 243 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 244 | "engines": { 245 | "node": ">=8" 246 | } 247 | }, 248 | "node_modules/brace-expansion": { 249 | "version": "1.1.11", 250 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 251 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 252 | "dependencies": { 253 | "balanced-match": "^1.0.0", 254 | "concat-map": "0.0.1" 255 | } 256 | }, 257 | "node_modules/braces": { 258 | "version": "3.0.2", 259 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 260 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 261 | "dependencies": { 262 | "fill-range": "^7.0.1" 263 | }, 264 | "engines": { 265 | "node": ">=8" 266 | } 267 | }, 268 | "node_modules/browserslist": { 269 | "version": "4.16.6", 270 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", 271 | "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", 272 | "peer": true, 273 | "dependencies": { 274 | "caniuse-lite": "^1.0.30001219", 275 | "colorette": "^1.2.2", 276 | "electron-to-chromium": "^1.3.723", 277 | "escalade": "^3.1.1", 278 | "node-releases": "^1.1.71" 279 | }, 280 | "bin": { 281 | "browserslist": "cli.js" 282 | }, 283 | "engines": { 284 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 285 | }, 286 | "funding": { 287 | "type": "opencollective", 288 | "url": "https://opencollective.com/browserslist" 289 | } 290 | }, 291 | "node_modules/bytes": { 292 | "version": "3.1.0", 293 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 294 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", 295 | "engines": { 296 | "node": ">= 0.8" 297 | } 298 | }, 299 | "node_modules/callsites": { 300 | "version": "3.1.0", 301 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 302 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 303 | "engines": { 304 | "node": ">=6" 305 | } 306 | }, 307 | "node_modules/camelcase-css": { 308 | "version": "2.0.1", 309 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 310 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 311 | "engines": { 312 | "node": ">= 6" 313 | } 314 | }, 315 | "node_modules/caniuse-lite": { 316 | "version": "1.0.30001246", 317 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz", 318 | "integrity": "sha512-Tc+ff0Co/nFNbLOrziBXmMVtpt9S2c2Y+Z9Nk9Khj09J+0zR9ejvIW5qkZAErCbOrVODCx/MN+GpB5FNBs5GFA==", 319 | "peer": true, 320 | "funding": { 321 | "type": "opencollective", 322 | "url": "https://opencollective.com/browserslist" 323 | } 324 | }, 325 | "node_modules/chalk": { 326 | "version": "4.1.1", 327 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", 328 | "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", 329 | "dependencies": { 330 | "ansi-styles": "^4.1.0", 331 | "supports-color": "^7.1.0" 332 | }, 333 | "engines": { 334 | "node": ">=10" 335 | }, 336 | "funding": { 337 | "url": "https://github.com/chalk/chalk?sponsor=1" 338 | } 339 | }, 340 | "node_modules/chokidar": { 341 | "version": "3.5.2", 342 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", 343 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", 344 | "dependencies": { 345 | "anymatch": "~3.1.2", 346 | "braces": "~3.0.2", 347 | "glob-parent": "~5.1.2", 348 | "is-binary-path": "~2.1.0", 349 | "is-glob": "~4.0.1", 350 | "normalize-path": "~3.0.0", 351 | "readdirp": "~3.6.0" 352 | }, 353 | "engines": { 354 | "node": ">= 8.10.0" 355 | }, 356 | "optionalDependencies": { 357 | "fsevents": "~2.3.2" 358 | } 359 | }, 360 | "node_modules/chokidar/node_modules/glob-parent": { 361 | "version": "5.1.2", 362 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 363 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 364 | "dependencies": { 365 | "is-glob": "^4.0.1" 366 | }, 367 | "engines": { 368 | "node": ">= 6" 369 | } 370 | }, 371 | "node_modules/color": { 372 | "version": "3.2.1", 373 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 374 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 375 | "dependencies": { 376 | "color-convert": "^1.9.3", 377 | "color-string": "^1.6.0" 378 | } 379 | }, 380 | "node_modules/color-convert": { 381 | "version": "2.0.1", 382 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 383 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 384 | "dependencies": { 385 | "color-name": "~1.1.4" 386 | }, 387 | "engines": { 388 | "node": ">=7.0.0" 389 | } 390 | }, 391 | "node_modules/color-name": { 392 | "version": "1.1.4", 393 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 394 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 395 | }, 396 | "node_modules/color-string": { 397 | "version": "1.6.0", 398 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", 399 | "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", 400 | "dependencies": { 401 | "color-name": "^1.0.0", 402 | "simple-swizzle": "^0.2.2" 403 | } 404 | }, 405 | "node_modules/color/node_modules/color-convert": { 406 | "version": "1.9.3", 407 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 408 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 409 | "dependencies": { 410 | "color-name": "1.1.3" 411 | } 412 | }, 413 | "node_modules/color/node_modules/color-name": { 414 | "version": "1.1.3", 415 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 416 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 417 | }, 418 | "node_modules/colorette": { 419 | "version": "1.2.2", 420 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 421 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" 422 | }, 423 | "node_modules/commander": { 424 | "version": "6.2.1", 425 | "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", 426 | "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", 427 | "engines": { 428 | "node": ">= 6" 429 | } 430 | }, 431 | "node_modules/concat-map": { 432 | "version": "0.0.1", 433 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 434 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 435 | }, 436 | "node_modules/cosmiconfig": { 437 | "version": "7.0.0", 438 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", 439 | "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", 440 | "dependencies": { 441 | "@types/parse-json": "^4.0.0", 442 | "import-fresh": "^3.2.1", 443 | "parse-json": "^5.0.0", 444 | "path-type": "^4.0.0", 445 | "yaml": "^1.10.0" 446 | }, 447 | "engines": { 448 | "node": ">=10" 449 | } 450 | }, 451 | "node_modules/css-unit-converter": { 452 | "version": "1.1.2", 453 | "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", 454 | "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" 455 | }, 456 | "node_modules/cssesc": { 457 | "version": "3.0.0", 458 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 459 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 460 | "bin": { 461 | "cssesc": "bin/cssesc" 462 | }, 463 | "engines": { 464 | "node": ">=4" 465 | } 466 | }, 467 | "node_modules/defined": { 468 | "version": "1.0.0", 469 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", 470 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" 471 | }, 472 | "node_modules/detective": { 473 | "version": "5.2.0", 474 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", 475 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", 476 | "dependencies": { 477 | "acorn-node": "^1.6.1", 478 | "defined": "^1.0.0", 479 | "minimist": "^1.1.1" 480 | }, 481 | "bin": { 482 | "detective": "bin/detective.js" 483 | }, 484 | "engines": { 485 | "node": ">=0.8.0" 486 | } 487 | }, 488 | "node_modules/didyoumean": { 489 | "version": "1.2.2", 490 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 491 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 492 | }, 493 | "node_modules/dlv": { 494 | "version": "1.1.3", 495 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 496 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 497 | }, 498 | "node_modules/electron-to-chromium": { 499 | "version": "1.3.785", 500 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.785.tgz", 501 | "integrity": "sha512-WmCgAeURsMFiyoJ646eUaJQ7GNfvMRLXo+GamUyKVNEM4MqTAsXyC0f38JEB4N3BtbD0tlAKozGP5E2T9K3YGg==", 502 | "peer": true 503 | }, 504 | "node_modules/error-ex": { 505 | "version": "1.3.2", 506 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 507 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 508 | "dependencies": { 509 | "is-arrayish": "^0.2.1" 510 | } 511 | }, 512 | "node_modules/escalade": { 513 | "version": "3.1.1", 514 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 515 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 516 | "peer": true, 517 | "engines": { 518 | "node": ">=6" 519 | } 520 | }, 521 | "node_modules/escape-string-regexp": { 522 | "version": "1.0.5", 523 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 524 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", 525 | "engines": { 526 | "node": ">=0.8.0" 527 | } 528 | }, 529 | "node_modules/fast-glob": { 530 | "version": "3.2.7", 531 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", 532 | "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", 533 | "dependencies": { 534 | "@nodelib/fs.stat": "^2.0.2", 535 | "@nodelib/fs.walk": "^1.2.3", 536 | "glob-parent": "^5.1.2", 537 | "merge2": "^1.3.0", 538 | "micromatch": "^4.0.4" 539 | }, 540 | "engines": { 541 | "node": ">=8" 542 | } 543 | }, 544 | "node_modules/fast-glob/node_modules/glob-parent": { 545 | "version": "5.1.2", 546 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 547 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 548 | "dependencies": { 549 | "is-glob": "^4.0.1" 550 | }, 551 | "engines": { 552 | "node": ">= 6" 553 | } 554 | }, 555 | "node_modules/fastq": { 556 | "version": "1.11.1", 557 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", 558 | "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", 559 | "dependencies": { 560 | "reusify": "^1.0.4" 561 | } 562 | }, 563 | "node_modules/fill-range": { 564 | "version": "7.0.1", 565 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 566 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 567 | "dependencies": { 568 | "to-regex-range": "^5.0.1" 569 | }, 570 | "engines": { 571 | "node": ">=8" 572 | } 573 | }, 574 | "node_modules/fraction.js": { 575 | "version": "4.1.1", 576 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", 577 | "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", 578 | "peer": true, 579 | "engines": { 580 | "node": "*" 581 | }, 582 | "funding": { 583 | "type": "patreon", 584 | "url": "https://www.patreon.com/infusion" 585 | } 586 | }, 587 | "node_modules/fs-extra": { 588 | "version": "10.0.0", 589 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", 590 | "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", 591 | "dependencies": { 592 | "graceful-fs": "^4.2.0", 593 | "jsonfile": "^6.0.1", 594 | "universalify": "^2.0.0" 595 | }, 596 | "engines": { 597 | "node": ">=12" 598 | } 599 | }, 600 | "node_modules/fs.realpath": { 601 | "version": "1.0.0", 602 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 603 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 604 | }, 605 | "node_modules/fsevents": { 606 | "version": "2.3.2", 607 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 608 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 609 | "hasInstallScript": true, 610 | "optional": true, 611 | "os": [ 612 | "darwin" 613 | ], 614 | "engines": { 615 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 616 | } 617 | }, 618 | "node_modules/function-bind": { 619 | "version": "1.1.1", 620 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 621 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 622 | }, 623 | "node_modules/glob": { 624 | "version": "7.1.7", 625 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 626 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 627 | "dependencies": { 628 | "fs.realpath": "^1.0.0", 629 | "inflight": "^1.0.4", 630 | "inherits": "2", 631 | "minimatch": "^3.0.4", 632 | "once": "^1.3.0", 633 | "path-is-absolute": "^1.0.0" 634 | }, 635 | "engines": { 636 | "node": "*" 637 | }, 638 | "funding": { 639 | "url": "https://github.com/sponsors/isaacs" 640 | } 641 | }, 642 | "node_modules/glob-parent": { 643 | "version": "6.0.1", 644 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz", 645 | "integrity": "sha512-kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog==", 646 | "dependencies": { 647 | "is-glob": "^4.0.1" 648 | }, 649 | "engines": { 650 | "node": ">=10.13.0" 651 | } 652 | }, 653 | "node_modules/graceful-fs": { 654 | "version": "4.2.6", 655 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", 656 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" 657 | }, 658 | "node_modules/has": { 659 | "version": "1.0.3", 660 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 661 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 662 | "dependencies": { 663 | "function-bind": "^1.1.1" 664 | }, 665 | "engines": { 666 | "node": ">= 0.4.0" 667 | } 668 | }, 669 | "node_modules/has-flag": { 670 | "version": "4.0.0", 671 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 672 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 673 | "engines": { 674 | "node": ">=8" 675 | } 676 | }, 677 | "node_modules/html-tags": { 678 | "version": "3.1.0", 679 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", 680 | "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==", 681 | "engines": { 682 | "node": ">=8" 683 | } 684 | }, 685 | "node_modules/import-cwd": { 686 | "version": "3.0.0", 687 | "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", 688 | "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", 689 | "dependencies": { 690 | "import-from": "^3.0.0" 691 | }, 692 | "engines": { 693 | "node": ">=8" 694 | } 695 | }, 696 | "node_modules/import-fresh": { 697 | "version": "3.3.0", 698 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 699 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 700 | "dependencies": { 701 | "parent-module": "^1.0.0", 702 | "resolve-from": "^4.0.0" 703 | }, 704 | "engines": { 705 | "node": ">=6" 706 | }, 707 | "funding": { 708 | "url": "https://github.com/sponsors/sindresorhus" 709 | } 710 | }, 711 | "node_modules/import-from": { 712 | "version": "3.0.0", 713 | "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", 714 | "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", 715 | "dependencies": { 716 | "resolve-from": "^5.0.0" 717 | }, 718 | "engines": { 719 | "node": ">=8" 720 | } 721 | }, 722 | "node_modules/import-from/node_modules/resolve-from": { 723 | "version": "5.0.0", 724 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 725 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 726 | "engines": { 727 | "node": ">=8" 728 | } 729 | }, 730 | "node_modules/inflight": { 731 | "version": "1.0.6", 732 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 733 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 734 | "dependencies": { 735 | "once": "^1.3.0", 736 | "wrappy": "1" 737 | } 738 | }, 739 | "node_modules/inherits": { 740 | "version": "2.0.4", 741 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 742 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 743 | }, 744 | "node_modules/is-arrayish": { 745 | "version": "0.2.1", 746 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 747 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" 748 | }, 749 | "node_modules/is-binary-path": { 750 | "version": "2.1.0", 751 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 752 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 753 | "dependencies": { 754 | "binary-extensions": "^2.0.0" 755 | }, 756 | "engines": { 757 | "node": ">=8" 758 | } 759 | }, 760 | "node_modules/is-core-module": { 761 | "version": "2.5.0", 762 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", 763 | "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", 764 | "dependencies": { 765 | "has": "^1.0.3" 766 | }, 767 | "funding": { 768 | "url": "https://github.com/sponsors/ljharb" 769 | } 770 | }, 771 | "node_modules/is-extglob": { 772 | "version": "2.1.1", 773 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 774 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", 775 | "engines": { 776 | "node": ">=0.10.0" 777 | } 778 | }, 779 | "node_modules/is-glob": { 780 | "version": "4.0.1", 781 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 782 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 783 | "dependencies": { 784 | "is-extglob": "^2.1.1" 785 | }, 786 | "engines": { 787 | "node": ">=0.10.0" 788 | } 789 | }, 790 | "node_modules/is-number": { 791 | "version": "7.0.0", 792 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 793 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 794 | "engines": { 795 | "node": ">=0.12.0" 796 | } 797 | }, 798 | "node_modules/js-tokens": { 799 | "version": "4.0.0", 800 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 801 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 802 | }, 803 | "node_modules/json-parse-even-better-errors": { 804 | "version": "2.3.1", 805 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 806 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" 807 | }, 808 | "node_modules/jsonfile": { 809 | "version": "6.1.0", 810 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 811 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 812 | "dependencies": { 813 | "universalify": "^2.0.0" 814 | }, 815 | "optionalDependencies": { 816 | "graceful-fs": "^4.1.6" 817 | } 818 | }, 819 | "node_modules/lilconfig": { 820 | "version": "2.0.3", 821 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", 822 | "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==", 823 | "engines": { 824 | "node": ">=10" 825 | } 826 | }, 827 | "node_modules/lines-and-columns": { 828 | "version": "1.1.6", 829 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", 830 | "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" 831 | }, 832 | "node_modules/lodash": { 833 | "version": "4.17.21", 834 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 835 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 836 | }, 837 | "node_modules/lodash.toarray": { 838 | "version": "4.4.0", 839 | "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", 840 | "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" 841 | }, 842 | "node_modules/lodash.topath": { 843 | "version": "4.5.2", 844 | "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", 845 | "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=" 846 | }, 847 | "node_modules/merge2": { 848 | "version": "1.4.1", 849 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 850 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 851 | "engines": { 852 | "node": ">= 8" 853 | } 854 | }, 855 | "node_modules/micromatch": { 856 | "version": "4.0.4", 857 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", 858 | "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", 859 | "dependencies": { 860 | "braces": "^3.0.1", 861 | "picomatch": "^2.2.3" 862 | }, 863 | "engines": { 864 | "node": ">=8.6" 865 | } 866 | }, 867 | "node_modules/mini-svg-data-uri": { 868 | "version": "1.3.3", 869 | "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.3.3.tgz", 870 | "integrity": "sha512-+fA2oRcR1dJI/7ITmeQJDrYWks0wodlOz0pAEhKYJ2IVc1z0AnwJUsKY2fzFmPAM3Jo9J0rBx8JAA9QQSJ5PuA==", 871 | "bin": { 872 | "mini-svg-data-uri": "cli.js" 873 | } 874 | }, 875 | "node_modules/minimatch": { 876 | "version": "3.0.4", 877 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 878 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 879 | "dependencies": { 880 | "brace-expansion": "^1.1.7" 881 | }, 882 | "engines": { 883 | "node": "*" 884 | } 885 | }, 886 | "node_modules/minimist": { 887 | "version": "1.2.5", 888 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 889 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" 890 | }, 891 | "node_modules/modern-normalize": { 892 | "version": "1.1.0", 893 | "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", 894 | "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==", 895 | "engines": { 896 | "node": ">=6" 897 | }, 898 | "funding": { 899 | "url": "https://github.com/sponsors/sindresorhus" 900 | } 901 | }, 902 | "node_modules/nanoid": { 903 | "version": "3.1.23", 904 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz", 905 | "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==", 906 | "bin": { 907 | "nanoid": "bin/nanoid.cjs" 908 | }, 909 | "engines": { 910 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 911 | } 912 | }, 913 | "node_modules/node-emoji": { 914 | "version": "1.10.0", 915 | "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", 916 | "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", 917 | "dependencies": { 918 | "lodash.toarray": "^4.4.0" 919 | } 920 | }, 921 | "node_modules/node-releases": { 922 | "version": "1.1.73", 923 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", 924 | "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", 925 | "peer": true 926 | }, 927 | "node_modules/normalize-path": { 928 | "version": "3.0.0", 929 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 930 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 931 | "engines": { 932 | "node": ">=0.10.0" 933 | } 934 | }, 935 | "node_modules/normalize-range": { 936 | "version": "0.1.2", 937 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 938 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", 939 | "peer": true, 940 | "engines": { 941 | "node": ">=0.10.0" 942 | } 943 | }, 944 | "node_modules/object-hash": { 945 | "version": "2.2.0", 946 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 947 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==", 948 | "engines": { 949 | "node": ">= 6" 950 | } 951 | }, 952 | "node_modules/once": { 953 | "version": "1.4.0", 954 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 955 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 956 | "dependencies": { 957 | "wrappy": "1" 958 | } 959 | }, 960 | "node_modules/parent-module": { 961 | "version": "1.0.1", 962 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 963 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 964 | "dependencies": { 965 | "callsites": "^3.0.0" 966 | }, 967 | "engines": { 968 | "node": ">=6" 969 | } 970 | }, 971 | "node_modules/parse-json": { 972 | "version": "5.2.0", 973 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 974 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 975 | "dependencies": { 976 | "@babel/code-frame": "^7.0.0", 977 | "error-ex": "^1.3.1", 978 | "json-parse-even-better-errors": "^2.3.0", 979 | "lines-and-columns": "^1.1.6" 980 | }, 981 | "engines": { 982 | "node": ">=8" 983 | }, 984 | "funding": { 985 | "url": "https://github.com/sponsors/sindresorhus" 986 | } 987 | }, 988 | "node_modules/path-is-absolute": { 989 | "version": "1.0.1", 990 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 991 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", 992 | "engines": { 993 | "node": ">=0.10.0" 994 | } 995 | }, 996 | "node_modules/path-parse": { 997 | "version": "1.0.7", 998 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 999 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 1000 | }, 1001 | "node_modules/path-type": { 1002 | "version": "4.0.0", 1003 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1004 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1005 | "engines": { 1006 | "node": ">=8" 1007 | } 1008 | }, 1009 | "node_modules/picomatch": { 1010 | "version": "2.3.0", 1011 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", 1012 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==", 1013 | "engines": { 1014 | "node": ">=8.6" 1015 | }, 1016 | "funding": { 1017 | "url": "https://github.com/sponsors/jonschlinkert" 1018 | } 1019 | }, 1020 | "node_modules/postcss": { 1021 | "version": "8.3.6", 1022 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz", 1023 | "integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==", 1024 | "dependencies": { 1025 | "colorette": "^1.2.2", 1026 | "nanoid": "^3.1.23", 1027 | "source-map-js": "^0.6.2" 1028 | }, 1029 | "engines": { 1030 | "node": "^10 || ^12 || >=14" 1031 | }, 1032 | "funding": { 1033 | "type": "opencollective", 1034 | "url": "https://opencollective.com/postcss/" 1035 | } 1036 | }, 1037 | "node_modules/postcss-js": { 1038 | "version": "3.0.3", 1039 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", 1040 | "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", 1041 | "dependencies": { 1042 | "camelcase-css": "^2.0.1", 1043 | "postcss": "^8.1.6" 1044 | }, 1045 | "engines": { 1046 | "node": ">=10.0" 1047 | }, 1048 | "funding": { 1049 | "type": "opencollective", 1050 | "url": "https://opencollective.com/postcss/" 1051 | } 1052 | }, 1053 | "node_modules/postcss-load-config": { 1054 | "version": "3.1.0", 1055 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", 1056 | "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", 1057 | "dependencies": { 1058 | "import-cwd": "^3.0.0", 1059 | "lilconfig": "^2.0.3", 1060 | "yaml": "^1.10.2" 1061 | }, 1062 | "engines": { 1063 | "node": ">= 10" 1064 | }, 1065 | "funding": { 1066 | "type": "opencollective", 1067 | "url": "https://opencollective.com/postcss/" 1068 | }, 1069 | "peerDependencies": { 1070 | "ts-node": ">=9.0.0" 1071 | }, 1072 | "peerDependenciesMeta": { 1073 | "ts-node": { 1074 | "optional": true 1075 | } 1076 | } 1077 | }, 1078 | "node_modules/postcss-nested": { 1079 | "version": "5.0.5", 1080 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz", 1081 | "integrity": "sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew==", 1082 | "dependencies": { 1083 | "postcss-selector-parser": "^6.0.4" 1084 | }, 1085 | "engines": { 1086 | "node": ">=10.0" 1087 | }, 1088 | "funding": { 1089 | "type": "opencollective", 1090 | "url": "https://opencollective.com/postcss/" 1091 | }, 1092 | "peerDependencies": { 1093 | "postcss": "^8.1.13" 1094 | } 1095 | }, 1096 | "node_modules/postcss-selector-parser": { 1097 | "version": "6.0.6", 1098 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", 1099 | "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", 1100 | "dependencies": { 1101 | "cssesc": "^3.0.0", 1102 | "util-deprecate": "^1.0.2" 1103 | }, 1104 | "engines": { 1105 | "node": ">=4" 1106 | } 1107 | }, 1108 | "node_modules/postcss-value-parser": { 1109 | "version": "4.1.0", 1110 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", 1111 | "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" 1112 | }, 1113 | "node_modules/pretty-hrtime": { 1114 | "version": "1.0.3", 1115 | "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", 1116 | "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=", 1117 | "engines": { 1118 | "node": ">= 0.8" 1119 | } 1120 | }, 1121 | "node_modules/purgecss": { 1122 | "version": "4.0.3", 1123 | "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz", 1124 | "integrity": "sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw==", 1125 | "dependencies": { 1126 | "commander": "^6.0.0", 1127 | "glob": "^7.0.0", 1128 | "postcss": "^8.2.1", 1129 | "postcss-selector-parser": "^6.0.2" 1130 | }, 1131 | "bin": { 1132 | "purgecss": "bin/purgecss.js" 1133 | } 1134 | }, 1135 | "node_modules/queue-microtask": { 1136 | "version": "1.2.3", 1137 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1138 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1139 | "funding": [ 1140 | { 1141 | "type": "github", 1142 | "url": "https://github.com/sponsors/feross" 1143 | }, 1144 | { 1145 | "type": "patreon", 1146 | "url": "https://www.patreon.com/feross" 1147 | }, 1148 | { 1149 | "type": "consulting", 1150 | "url": "https://feross.org/support" 1151 | } 1152 | ] 1153 | }, 1154 | "node_modules/quick-lru": { 1155 | "version": "5.1.1", 1156 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 1157 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 1158 | "engines": { 1159 | "node": ">=10" 1160 | }, 1161 | "funding": { 1162 | "url": "https://github.com/sponsors/sindresorhus" 1163 | } 1164 | }, 1165 | "node_modules/readdirp": { 1166 | "version": "3.6.0", 1167 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 1168 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 1169 | "dependencies": { 1170 | "picomatch": "^2.2.1" 1171 | }, 1172 | "engines": { 1173 | "node": ">=8.10.0" 1174 | } 1175 | }, 1176 | "node_modules/reduce-css-calc": { 1177 | "version": "2.1.8", 1178 | "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", 1179 | "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", 1180 | "dependencies": { 1181 | "css-unit-converter": "^1.1.1", 1182 | "postcss-value-parser": "^3.3.0" 1183 | } 1184 | }, 1185 | "node_modules/reduce-css-calc/node_modules/postcss-value-parser": { 1186 | "version": "3.3.1", 1187 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 1188 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" 1189 | }, 1190 | "node_modules/resolve": { 1191 | "version": "1.20.0", 1192 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", 1193 | "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", 1194 | "dependencies": { 1195 | "is-core-module": "^2.2.0", 1196 | "path-parse": "^1.0.6" 1197 | }, 1198 | "funding": { 1199 | "url": "https://github.com/sponsors/ljharb" 1200 | } 1201 | }, 1202 | "node_modules/resolve-from": { 1203 | "version": "4.0.0", 1204 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1205 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1206 | "engines": { 1207 | "node": ">=4" 1208 | } 1209 | }, 1210 | "node_modules/reusify": { 1211 | "version": "1.0.4", 1212 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1213 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1214 | "engines": { 1215 | "iojs": ">=1.0.0", 1216 | "node": ">=0.10.0" 1217 | } 1218 | }, 1219 | "node_modules/rimraf": { 1220 | "version": "3.0.2", 1221 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1222 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1223 | "dependencies": { 1224 | "glob": "^7.1.3" 1225 | }, 1226 | "bin": { 1227 | "rimraf": "bin.js" 1228 | }, 1229 | "funding": { 1230 | "url": "https://github.com/sponsors/isaacs" 1231 | } 1232 | }, 1233 | "node_modules/run-parallel": { 1234 | "version": "1.2.0", 1235 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1236 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1237 | "funding": [ 1238 | { 1239 | "type": "github", 1240 | "url": "https://github.com/sponsors/feross" 1241 | }, 1242 | { 1243 | "type": "patreon", 1244 | "url": "https://www.patreon.com/feross" 1245 | }, 1246 | { 1247 | "type": "consulting", 1248 | "url": "https://feross.org/support" 1249 | } 1250 | ], 1251 | "dependencies": { 1252 | "queue-microtask": "^1.2.2" 1253 | } 1254 | }, 1255 | "node_modules/simple-swizzle": { 1256 | "version": "0.2.2", 1257 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 1258 | "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", 1259 | "dependencies": { 1260 | "is-arrayish": "^0.3.1" 1261 | } 1262 | }, 1263 | "node_modules/simple-swizzle/node_modules/is-arrayish": { 1264 | "version": "0.3.2", 1265 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 1266 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 1267 | }, 1268 | "node_modules/source-map-js": { 1269 | "version": "0.6.2", 1270 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", 1271 | "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==", 1272 | "engines": { 1273 | "node": ">=0.10.0" 1274 | } 1275 | }, 1276 | "node_modules/supports-color": { 1277 | "version": "7.2.0", 1278 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1279 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1280 | "dependencies": { 1281 | "has-flag": "^4.0.0" 1282 | }, 1283 | "engines": { 1284 | "node": ">=8" 1285 | } 1286 | }, 1287 | "node_modules/tailwindcss": { 1288 | "version": "2.2.6", 1289 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.6.tgz", 1290 | "integrity": "sha512-hyYAltGfxf7zPpB9lImj7uUCoa0gdUKhG91J1JXdlLq2bTAgessoA0doJ1FhKc1KwSUfx0hiohPQbMfNFgQO1A==", 1291 | "dependencies": { 1292 | "arg": "^5.0.0", 1293 | "bytes": "^3.0.0", 1294 | "chalk": "^4.1.1", 1295 | "chokidar": "^3.5.2", 1296 | "color": "^3.2.0", 1297 | "cosmiconfig": "^7.0.0", 1298 | "detective": "^5.2.0", 1299 | "didyoumean": "^1.2.2", 1300 | "dlv": "^1.1.3", 1301 | "fast-glob": "^3.2.7", 1302 | "fs-extra": "^10.0.0", 1303 | "glob-parent": "^6.0.0", 1304 | "html-tags": "^3.1.0", 1305 | "is-glob": "^4.0.1", 1306 | "lodash": "^4.17.21", 1307 | "lodash.topath": "^4.5.2", 1308 | "modern-normalize": "^1.1.0", 1309 | "node-emoji": "^1.8.1", 1310 | "normalize-path": "^3.0.0", 1311 | "object-hash": "^2.2.0", 1312 | "postcss-js": "^3.0.3", 1313 | "postcss-load-config": "^3.1.0", 1314 | "postcss-nested": "5.0.5", 1315 | "postcss-selector-parser": "^6.0.6", 1316 | "postcss-value-parser": "^4.1.0", 1317 | "pretty-hrtime": "^1.0.3", 1318 | "purgecss": "^4.0.3", 1319 | "quick-lru": "^5.1.1", 1320 | "reduce-css-calc": "^2.1.8", 1321 | "resolve": "^1.20.0", 1322 | "tmp": "^0.2.1" 1323 | }, 1324 | "bin": { 1325 | "tailwind": "lib/cli.js", 1326 | "tailwindcss": "lib/cli.js" 1327 | }, 1328 | "engines": { 1329 | "node": ">=12.13.0" 1330 | }, 1331 | "peerDependencies": { 1332 | "autoprefixer": "^10.0.2", 1333 | "postcss": "^8.0.9" 1334 | } 1335 | }, 1336 | "node_modules/tmp": { 1337 | "version": "0.2.1", 1338 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", 1339 | "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", 1340 | "dependencies": { 1341 | "rimraf": "^3.0.0" 1342 | }, 1343 | "engines": { 1344 | "node": ">=8.17.0" 1345 | } 1346 | }, 1347 | "node_modules/to-regex-range": { 1348 | "version": "5.0.1", 1349 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1350 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1351 | "dependencies": { 1352 | "is-number": "^7.0.0" 1353 | }, 1354 | "engines": { 1355 | "node": ">=8.0" 1356 | } 1357 | }, 1358 | "node_modules/universalify": { 1359 | "version": "2.0.0", 1360 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", 1361 | "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", 1362 | "engines": { 1363 | "node": ">= 10.0.0" 1364 | } 1365 | }, 1366 | "node_modules/util-deprecate": { 1367 | "version": "1.0.2", 1368 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1369 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 1370 | }, 1371 | "node_modules/wrappy": { 1372 | "version": "1.0.2", 1373 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1374 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 1375 | }, 1376 | "node_modules/xtend": { 1377 | "version": "4.0.2", 1378 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 1379 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", 1380 | "engines": { 1381 | "node": ">=0.4" 1382 | } 1383 | }, 1384 | "node_modules/yaml": { 1385 | "version": "1.10.2", 1386 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 1387 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", 1388 | "engines": { 1389 | "node": ">= 6" 1390 | } 1391 | } 1392 | }, 1393 | "dependencies": { 1394 | "@babel/code-frame": { 1395 | "version": "7.14.5", 1396 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz", 1397 | "integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==", 1398 | "requires": { 1399 | "@babel/highlight": "^7.14.5" 1400 | } 1401 | }, 1402 | "@babel/helper-validator-identifier": { 1403 | "version": "7.14.8", 1404 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.8.tgz", 1405 | "integrity": "sha512-ZGy6/XQjllhYQrNw/3zfWRwZCTVSiBLZ9DHVZxn9n2gip/7ab8mv2TWlKPIBk26RwedCBoWdjLmn+t9na2Gcow==" 1406 | }, 1407 | "@babel/highlight": { 1408 | "version": "7.14.5", 1409 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz", 1410 | "integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==", 1411 | "requires": { 1412 | "@babel/helper-validator-identifier": "^7.14.5", 1413 | "chalk": "^2.0.0", 1414 | "js-tokens": "^4.0.0" 1415 | }, 1416 | "dependencies": { 1417 | "ansi-styles": { 1418 | "version": "3.2.1", 1419 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1420 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1421 | "requires": { 1422 | "color-convert": "^1.9.0" 1423 | } 1424 | }, 1425 | "chalk": { 1426 | "version": "2.4.2", 1427 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1428 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1429 | "requires": { 1430 | "ansi-styles": "^3.2.1", 1431 | "escape-string-regexp": "^1.0.5", 1432 | "supports-color": "^5.3.0" 1433 | } 1434 | }, 1435 | "color-convert": { 1436 | "version": "1.9.3", 1437 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1438 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1439 | "requires": { 1440 | "color-name": "1.1.3" 1441 | } 1442 | }, 1443 | "color-name": { 1444 | "version": "1.1.3", 1445 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1446 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 1447 | }, 1448 | "has-flag": { 1449 | "version": "3.0.0", 1450 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1451 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 1452 | }, 1453 | "supports-color": { 1454 | "version": "5.5.0", 1455 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1456 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1457 | "requires": { 1458 | "has-flag": "^3.0.0" 1459 | } 1460 | } 1461 | } 1462 | }, 1463 | "@nodelib/fs.scandir": { 1464 | "version": "2.1.5", 1465 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1466 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1467 | "requires": { 1468 | "@nodelib/fs.stat": "2.0.5", 1469 | "run-parallel": "^1.1.9" 1470 | } 1471 | }, 1472 | "@nodelib/fs.stat": { 1473 | "version": "2.0.5", 1474 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1475 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" 1476 | }, 1477 | "@nodelib/fs.walk": { 1478 | "version": "1.2.8", 1479 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1480 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1481 | "requires": { 1482 | "@nodelib/fs.scandir": "2.1.5", 1483 | "fastq": "^1.6.0" 1484 | } 1485 | }, 1486 | "@tailwindcss/forms": { 1487 | "version": "0.3.3", 1488 | "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.3.3.tgz", 1489 | "integrity": "sha512-U8Fi/gq4mSuaLyLtFISwuDYzPB73YzgozjxOIHsK6NXgg/IWD1FLaHbFlWmurAMyy98O+ao74ksdQefsquBV1Q==", 1490 | "requires": { 1491 | "mini-svg-data-uri": "^1.2.3" 1492 | } 1493 | }, 1494 | "@types/parse-json": { 1495 | "version": "4.0.0", 1496 | "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", 1497 | "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" 1498 | }, 1499 | "acorn": { 1500 | "version": "7.4.1", 1501 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", 1502 | "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" 1503 | }, 1504 | "acorn-node": { 1505 | "version": "1.8.2", 1506 | "resolved": "https://registry.npmjs.org/acorn-node/-/acorn-node-1.8.2.tgz", 1507 | "integrity": "sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==", 1508 | "requires": { 1509 | "acorn": "^7.0.0", 1510 | "acorn-walk": "^7.0.0", 1511 | "xtend": "^4.0.2" 1512 | } 1513 | }, 1514 | "acorn-walk": { 1515 | "version": "7.2.0", 1516 | "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", 1517 | "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" 1518 | }, 1519 | "ansi-styles": { 1520 | "version": "4.3.0", 1521 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1522 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1523 | "requires": { 1524 | "color-convert": "^2.0.1" 1525 | } 1526 | }, 1527 | "anymatch": { 1528 | "version": "3.1.2", 1529 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 1530 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 1531 | "requires": { 1532 | "normalize-path": "^3.0.0", 1533 | "picomatch": "^2.0.4" 1534 | } 1535 | }, 1536 | "arg": { 1537 | "version": "5.0.0", 1538 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.0.tgz", 1539 | "integrity": "sha512-4P8Zm2H+BRS+c/xX1LrHw0qKpEhdlZjLCgWy+d78T9vqa2Z2SiD2wMrYuWIAFy5IZUD7nnNXroRttz+0RzlrzQ==" 1540 | }, 1541 | "autoprefixer": { 1542 | "version": "10.3.1", 1543 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.1.tgz", 1544 | "integrity": "sha512-L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A==", 1545 | "peer": true, 1546 | "requires": { 1547 | "browserslist": "^4.16.6", 1548 | "caniuse-lite": "^1.0.30001243", 1549 | "colorette": "^1.2.2", 1550 | "fraction.js": "^4.1.1", 1551 | "normalize-range": "^0.1.2", 1552 | "postcss-value-parser": "^4.1.0" 1553 | } 1554 | }, 1555 | "balanced-match": { 1556 | "version": "1.0.2", 1557 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1558 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 1559 | }, 1560 | "binary-extensions": { 1561 | "version": "2.2.0", 1562 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 1563 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" 1564 | }, 1565 | "brace-expansion": { 1566 | "version": "1.1.11", 1567 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1568 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1569 | "requires": { 1570 | "balanced-match": "^1.0.0", 1571 | "concat-map": "0.0.1" 1572 | } 1573 | }, 1574 | "braces": { 1575 | "version": "3.0.2", 1576 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1577 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1578 | "requires": { 1579 | "fill-range": "^7.0.1" 1580 | } 1581 | }, 1582 | "browserslist": { 1583 | "version": "4.16.6", 1584 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.6.tgz", 1585 | "integrity": "sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==", 1586 | "peer": true, 1587 | "requires": { 1588 | "caniuse-lite": "^1.0.30001219", 1589 | "colorette": "^1.2.2", 1590 | "electron-to-chromium": "^1.3.723", 1591 | "escalade": "^3.1.1", 1592 | "node-releases": "^1.1.71" 1593 | } 1594 | }, 1595 | "bytes": { 1596 | "version": "3.1.0", 1597 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", 1598 | "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" 1599 | }, 1600 | "callsites": { 1601 | "version": "3.1.0", 1602 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1603 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" 1604 | }, 1605 | "camelcase-css": { 1606 | "version": "2.0.1", 1607 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 1608 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==" 1609 | }, 1610 | "caniuse-lite": { 1611 | "version": "1.0.30001246", 1612 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001246.tgz", 1613 | "integrity": "sha512-Tc+ff0Co/nFNbLOrziBXmMVtpt9S2c2Y+Z9Nk9Khj09J+0zR9ejvIW5qkZAErCbOrVODCx/MN+GpB5FNBs5GFA==", 1614 | "peer": true 1615 | }, 1616 | "chalk": { 1617 | "version": "4.1.1", 1618 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz", 1619 | "integrity": "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg==", 1620 | "requires": { 1621 | "ansi-styles": "^4.1.0", 1622 | "supports-color": "^7.1.0" 1623 | } 1624 | }, 1625 | "chokidar": { 1626 | "version": "3.5.2", 1627 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", 1628 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", 1629 | "requires": { 1630 | "anymatch": "~3.1.2", 1631 | "braces": "~3.0.2", 1632 | "fsevents": "~2.3.2", 1633 | "glob-parent": "~5.1.2", 1634 | "is-binary-path": "~2.1.0", 1635 | "is-glob": "~4.0.1", 1636 | "normalize-path": "~3.0.0", 1637 | "readdirp": "~3.6.0" 1638 | }, 1639 | "dependencies": { 1640 | "glob-parent": { 1641 | "version": "5.1.2", 1642 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1643 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1644 | "requires": { 1645 | "is-glob": "^4.0.1" 1646 | } 1647 | } 1648 | } 1649 | }, 1650 | "color": { 1651 | "version": "3.2.1", 1652 | "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", 1653 | "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", 1654 | "requires": { 1655 | "color-convert": "^1.9.3", 1656 | "color-string": "^1.6.0" 1657 | }, 1658 | "dependencies": { 1659 | "color-convert": { 1660 | "version": "1.9.3", 1661 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1662 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1663 | "requires": { 1664 | "color-name": "1.1.3" 1665 | } 1666 | }, 1667 | "color-name": { 1668 | "version": "1.1.3", 1669 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1670 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 1671 | } 1672 | } 1673 | }, 1674 | "color-convert": { 1675 | "version": "2.0.1", 1676 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1677 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1678 | "requires": { 1679 | "color-name": "~1.1.4" 1680 | } 1681 | }, 1682 | "color-name": { 1683 | "version": "1.1.4", 1684 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1685 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1686 | }, 1687 | "color-string": { 1688 | "version": "1.6.0", 1689 | "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz", 1690 | "integrity": "sha512-c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA==", 1691 | "requires": { 1692 | "color-name": "^1.0.0", 1693 | "simple-swizzle": "^0.2.2" 1694 | } 1695 | }, 1696 | "colorette": { 1697 | "version": "1.2.2", 1698 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", 1699 | "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==" 1700 | }, 1701 | "commander": { 1702 | "version": "6.2.1", 1703 | "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", 1704 | "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" 1705 | }, 1706 | "concat-map": { 1707 | "version": "0.0.1", 1708 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1709 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 1710 | }, 1711 | "cosmiconfig": { 1712 | "version": "7.0.0", 1713 | "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", 1714 | "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", 1715 | "requires": { 1716 | "@types/parse-json": "^4.0.0", 1717 | "import-fresh": "^3.2.1", 1718 | "parse-json": "^5.0.0", 1719 | "path-type": "^4.0.0", 1720 | "yaml": "^1.10.0" 1721 | } 1722 | }, 1723 | "css-unit-converter": { 1724 | "version": "1.1.2", 1725 | "resolved": "https://registry.npmjs.org/css-unit-converter/-/css-unit-converter-1.1.2.tgz", 1726 | "integrity": "sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==" 1727 | }, 1728 | "cssesc": { 1729 | "version": "3.0.0", 1730 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1731 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" 1732 | }, 1733 | "defined": { 1734 | "version": "1.0.0", 1735 | "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", 1736 | "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=" 1737 | }, 1738 | "detective": { 1739 | "version": "5.2.0", 1740 | "resolved": "https://registry.npmjs.org/detective/-/detective-5.2.0.tgz", 1741 | "integrity": "sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg==", 1742 | "requires": { 1743 | "acorn-node": "^1.6.1", 1744 | "defined": "^1.0.0", 1745 | "minimist": "^1.1.1" 1746 | } 1747 | }, 1748 | "didyoumean": { 1749 | "version": "1.2.2", 1750 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1751 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1752 | }, 1753 | "dlv": { 1754 | "version": "1.1.3", 1755 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1756 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1757 | }, 1758 | "electron-to-chromium": { 1759 | "version": "1.3.785", 1760 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.785.tgz", 1761 | "integrity": "sha512-WmCgAeURsMFiyoJ646eUaJQ7GNfvMRLXo+GamUyKVNEM4MqTAsXyC0f38JEB4N3BtbD0tlAKozGP5E2T9K3YGg==", 1762 | "peer": true 1763 | }, 1764 | "error-ex": { 1765 | "version": "1.3.2", 1766 | "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", 1767 | "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", 1768 | "requires": { 1769 | "is-arrayish": "^0.2.1" 1770 | } 1771 | }, 1772 | "escalade": { 1773 | "version": "3.1.1", 1774 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1775 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1776 | "peer": true 1777 | }, 1778 | "escape-string-regexp": { 1779 | "version": "1.0.5", 1780 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 1781 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 1782 | }, 1783 | "fast-glob": { 1784 | "version": "3.2.7", 1785 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz", 1786 | "integrity": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==", 1787 | "requires": { 1788 | "@nodelib/fs.stat": "^2.0.2", 1789 | "@nodelib/fs.walk": "^1.2.3", 1790 | "glob-parent": "^5.1.2", 1791 | "merge2": "^1.3.0", 1792 | "micromatch": "^4.0.4" 1793 | }, 1794 | "dependencies": { 1795 | "glob-parent": { 1796 | "version": "5.1.2", 1797 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1798 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1799 | "requires": { 1800 | "is-glob": "^4.0.1" 1801 | } 1802 | } 1803 | } 1804 | }, 1805 | "fastq": { 1806 | "version": "1.11.1", 1807 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.11.1.tgz", 1808 | "integrity": "sha512-HOnr8Mc60eNYl1gzwp6r5RoUyAn5/glBolUzP/Ez6IFVPMPirxn/9phgL6zhOtaTy7ISwPvQ+wT+hfcRZh/bzw==", 1809 | "requires": { 1810 | "reusify": "^1.0.4" 1811 | } 1812 | }, 1813 | "fill-range": { 1814 | "version": "7.0.1", 1815 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1816 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1817 | "requires": { 1818 | "to-regex-range": "^5.0.1" 1819 | } 1820 | }, 1821 | "fraction.js": { 1822 | "version": "4.1.1", 1823 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz", 1824 | "integrity": "sha512-MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg==", 1825 | "peer": true 1826 | }, 1827 | "fs-extra": { 1828 | "version": "10.0.0", 1829 | "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.0.0.tgz", 1830 | "integrity": "sha512-C5owb14u9eJwizKGdchcDUQeFtlSHHthBk8pbX9Vc1PFZrLombudjDnNns88aYslCyF6IY5SUw3Roz6xShcEIQ==", 1831 | "requires": { 1832 | "graceful-fs": "^4.2.0", 1833 | "jsonfile": "^6.0.1", 1834 | "universalify": "^2.0.0" 1835 | } 1836 | }, 1837 | "fs.realpath": { 1838 | "version": "1.0.0", 1839 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1840 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 1841 | }, 1842 | "fsevents": { 1843 | "version": "2.3.2", 1844 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1845 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1846 | "optional": true 1847 | }, 1848 | "function-bind": { 1849 | "version": "1.1.1", 1850 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1851 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1852 | }, 1853 | "glob": { 1854 | "version": "7.1.7", 1855 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 1856 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 1857 | "requires": { 1858 | "fs.realpath": "^1.0.0", 1859 | "inflight": "^1.0.4", 1860 | "inherits": "2", 1861 | "minimatch": "^3.0.4", 1862 | "once": "^1.3.0", 1863 | "path-is-absolute": "^1.0.0" 1864 | } 1865 | }, 1866 | "glob-parent": { 1867 | "version": "6.0.1", 1868 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.1.tgz", 1869 | "integrity": "sha512-kEVjS71mQazDBHKcsq4E9u/vUzaLcw1A8EtUeydawvIWQCJM0qQ08G1H7/XTjFUulla6XQiDOG6MXSaG0HDKog==", 1870 | "requires": { 1871 | "is-glob": "^4.0.1" 1872 | } 1873 | }, 1874 | "graceful-fs": { 1875 | "version": "4.2.6", 1876 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", 1877 | "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" 1878 | }, 1879 | "has": { 1880 | "version": "1.0.3", 1881 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 1882 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 1883 | "requires": { 1884 | "function-bind": "^1.1.1" 1885 | } 1886 | }, 1887 | "has-flag": { 1888 | "version": "4.0.0", 1889 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1890 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 1891 | }, 1892 | "html-tags": { 1893 | "version": "3.1.0", 1894 | "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.1.0.tgz", 1895 | "integrity": "sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg==" 1896 | }, 1897 | "import-cwd": { 1898 | "version": "3.0.0", 1899 | "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-3.0.0.tgz", 1900 | "integrity": "sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==", 1901 | "requires": { 1902 | "import-from": "^3.0.0" 1903 | } 1904 | }, 1905 | "import-fresh": { 1906 | "version": "3.3.0", 1907 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1908 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1909 | "requires": { 1910 | "parent-module": "^1.0.0", 1911 | "resolve-from": "^4.0.0" 1912 | } 1913 | }, 1914 | "import-from": { 1915 | "version": "3.0.0", 1916 | "resolved": "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz", 1917 | "integrity": "sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==", 1918 | "requires": { 1919 | "resolve-from": "^5.0.0" 1920 | }, 1921 | "dependencies": { 1922 | "resolve-from": { 1923 | "version": "5.0.0", 1924 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 1925 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" 1926 | } 1927 | } 1928 | }, 1929 | "inflight": { 1930 | "version": "1.0.6", 1931 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1932 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 1933 | "requires": { 1934 | "once": "^1.3.0", 1935 | "wrappy": "1" 1936 | } 1937 | }, 1938 | "inherits": { 1939 | "version": "2.0.4", 1940 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1941 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 1942 | }, 1943 | "is-arrayish": { 1944 | "version": "0.2.1", 1945 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", 1946 | "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" 1947 | }, 1948 | "is-binary-path": { 1949 | "version": "2.1.0", 1950 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1951 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1952 | "requires": { 1953 | "binary-extensions": "^2.0.0" 1954 | } 1955 | }, 1956 | "is-core-module": { 1957 | "version": "2.5.0", 1958 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.5.0.tgz", 1959 | "integrity": "sha512-TXCMSDsEHMEEZ6eCA8rwRDbLu55MRGmrctljsBX/2v1d9/GzqHOxW5c5oPSgrUt2vBFXebu9rGqckXGPWOlYpg==", 1960 | "requires": { 1961 | "has": "^1.0.3" 1962 | } 1963 | }, 1964 | "is-extglob": { 1965 | "version": "2.1.1", 1966 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1967 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" 1968 | }, 1969 | "is-glob": { 1970 | "version": "4.0.1", 1971 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", 1972 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", 1973 | "requires": { 1974 | "is-extglob": "^2.1.1" 1975 | } 1976 | }, 1977 | "is-number": { 1978 | "version": "7.0.0", 1979 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1980 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" 1981 | }, 1982 | "js-tokens": { 1983 | "version": "4.0.0", 1984 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1985 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 1986 | }, 1987 | "json-parse-even-better-errors": { 1988 | "version": "2.3.1", 1989 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 1990 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" 1991 | }, 1992 | "jsonfile": { 1993 | "version": "6.1.0", 1994 | "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", 1995 | "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", 1996 | "requires": { 1997 | "graceful-fs": "^4.1.6", 1998 | "universalify": "^2.0.0" 1999 | } 2000 | }, 2001 | "lilconfig": { 2002 | "version": "2.0.3", 2003 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", 2004 | "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==" 2005 | }, 2006 | "lines-and-columns": { 2007 | "version": "1.1.6", 2008 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", 2009 | "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" 2010 | }, 2011 | "lodash": { 2012 | "version": "4.17.21", 2013 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2014 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2015 | }, 2016 | "lodash.toarray": { 2017 | "version": "4.4.0", 2018 | "resolved": "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz", 2019 | "integrity": "sha1-JMS/zWsvuji/0FlNsRedjptlZWE=" 2020 | }, 2021 | "lodash.topath": { 2022 | "version": "4.5.2", 2023 | "resolved": "https://registry.npmjs.org/lodash.topath/-/lodash.topath-4.5.2.tgz", 2024 | "integrity": "sha1-NhY1Hzu6YZlKCTGYlmC9AyVP0Ak=" 2025 | }, 2026 | "merge2": { 2027 | "version": "1.4.1", 2028 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2029 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" 2030 | }, 2031 | "micromatch": { 2032 | "version": "4.0.4", 2033 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz", 2034 | "integrity": "sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==", 2035 | "requires": { 2036 | "braces": "^3.0.1", 2037 | "picomatch": "^2.2.3" 2038 | } 2039 | }, 2040 | "mini-svg-data-uri": { 2041 | "version": "1.3.3", 2042 | "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.3.3.tgz", 2043 | "integrity": "sha512-+fA2oRcR1dJI/7ITmeQJDrYWks0wodlOz0pAEhKYJ2IVc1z0AnwJUsKY2fzFmPAM3Jo9J0rBx8JAA9QQSJ5PuA==" 2044 | }, 2045 | "minimatch": { 2046 | "version": "3.0.4", 2047 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 2048 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 2049 | "requires": { 2050 | "brace-expansion": "^1.1.7" 2051 | } 2052 | }, 2053 | "minimist": { 2054 | "version": "1.2.5", 2055 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", 2056 | "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" 2057 | }, 2058 | "modern-normalize": { 2059 | "version": "1.1.0", 2060 | "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", 2061 | "integrity": "sha512-2lMlY1Yc1+CUy0gw4H95uNN7vjbpoED7NNRSBHE25nWfLBdmMzFCsPshlzbxHz+gYMcBEUN8V4pU16prcdPSgA==" 2062 | }, 2063 | "nanoid": { 2064 | "version": "3.1.23", 2065 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.23.tgz", 2066 | "integrity": "sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==" 2067 | }, 2068 | "node-emoji": { 2069 | "version": "1.10.0", 2070 | "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz", 2071 | "integrity": "sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==", 2072 | "requires": { 2073 | "lodash.toarray": "^4.4.0" 2074 | } 2075 | }, 2076 | "node-releases": { 2077 | "version": "1.1.73", 2078 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", 2079 | "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", 2080 | "peer": true 2081 | }, 2082 | "normalize-path": { 2083 | "version": "3.0.0", 2084 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2085 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" 2086 | }, 2087 | "normalize-range": { 2088 | "version": "0.1.2", 2089 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2090 | "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", 2091 | "peer": true 2092 | }, 2093 | "object-hash": { 2094 | "version": "2.2.0", 2095 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz", 2096 | "integrity": "sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==" 2097 | }, 2098 | "once": { 2099 | "version": "1.4.0", 2100 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2101 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 2102 | "requires": { 2103 | "wrappy": "1" 2104 | } 2105 | }, 2106 | "parent-module": { 2107 | "version": "1.0.1", 2108 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2109 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2110 | "requires": { 2111 | "callsites": "^3.0.0" 2112 | } 2113 | }, 2114 | "parse-json": { 2115 | "version": "5.2.0", 2116 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", 2117 | "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", 2118 | "requires": { 2119 | "@babel/code-frame": "^7.0.0", 2120 | "error-ex": "^1.3.1", 2121 | "json-parse-even-better-errors": "^2.3.0", 2122 | "lines-and-columns": "^1.1.6" 2123 | } 2124 | }, 2125 | "path-is-absolute": { 2126 | "version": "1.0.1", 2127 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2128 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 2129 | }, 2130 | "path-parse": { 2131 | "version": "1.0.7", 2132 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 2133 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 2134 | }, 2135 | "path-type": { 2136 | "version": "4.0.0", 2137 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2138 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" 2139 | }, 2140 | "picomatch": { 2141 | "version": "2.3.0", 2142 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", 2143 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" 2144 | }, 2145 | "postcss": { 2146 | "version": "8.3.6", 2147 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz", 2148 | "integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==", 2149 | "requires": { 2150 | "colorette": "^1.2.2", 2151 | "nanoid": "^3.1.23", 2152 | "source-map-js": "^0.6.2" 2153 | } 2154 | }, 2155 | "postcss-js": { 2156 | "version": "3.0.3", 2157 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-3.0.3.tgz", 2158 | "integrity": "sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw==", 2159 | "requires": { 2160 | "camelcase-css": "^2.0.1", 2161 | "postcss": "^8.1.6" 2162 | } 2163 | }, 2164 | "postcss-load-config": { 2165 | "version": "3.1.0", 2166 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-3.1.0.tgz", 2167 | "integrity": "sha512-ipM8Ds01ZUophjDTQYSVP70slFSYg3T0/zyfII5vzhN6V57YSxMgG5syXuwi5VtS8wSf3iL30v0uBdoIVx4Q0g==", 2168 | "requires": { 2169 | "import-cwd": "^3.0.0", 2170 | "lilconfig": "^2.0.3", 2171 | "yaml": "^1.10.2" 2172 | } 2173 | }, 2174 | "postcss-nested": { 2175 | "version": "5.0.5", 2176 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-5.0.5.tgz", 2177 | "integrity": "sha512-GSRXYz5bccobpTzLQZXOnSOfKl6TwVr5CyAQJUPub4nuRJSOECK5AqurxVgmtxP48p0Kc/ndY/YyS1yqldX0Ew==", 2178 | "requires": { 2179 | "postcss-selector-parser": "^6.0.4" 2180 | } 2181 | }, 2182 | "postcss-selector-parser": { 2183 | "version": "6.0.6", 2184 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", 2185 | "integrity": "sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg==", 2186 | "requires": { 2187 | "cssesc": "^3.0.0", 2188 | "util-deprecate": "^1.0.2" 2189 | } 2190 | }, 2191 | "postcss-value-parser": { 2192 | "version": "4.1.0", 2193 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", 2194 | "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" 2195 | }, 2196 | "pretty-hrtime": { 2197 | "version": "1.0.3", 2198 | "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", 2199 | "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" 2200 | }, 2201 | "purgecss": { 2202 | "version": "4.0.3", 2203 | "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-4.0.3.tgz", 2204 | "integrity": "sha512-PYOIn5ibRIP34PBU9zohUcCI09c7drPJJtTDAc0Q6QlRz2/CHQ8ywGLdE7ZhxU2VTqB7p5wkvj5Qcm05Rz3Jmw==", 2205 | "requires": { 2206 | "commander": "^6.0.0", 2207 | "glob": "^7.0.0", 2208 | "postcss": "^8.2.1", 2209 | "postcss-selector-parser": "^6.0.2" 2210 | } 2211 | }, 2212 | "queue-microtask": { 2213 | "version": "1.2.3", 2214 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2215 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" 2216 | }, 2217 | "quick-lru": { 2218 | "version": "5.1.1", 2219 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 2220 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" 2221 | }, 2222 | "readdirp": { 2223 | "version": "3.6.0", 2224 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2225 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2226 | "requires": { 2227 | "picomatch": "^2.2.1" 2228 | } 2229 | }, 2230 | "reduce-css-calc": { 2231 | "version": "2.1.8", 2232 | "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz", 2233 | "integrity": "sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==", 2234 | "requires": { 2235 | "css-unit-converter": "^1.1.1", 2236 | "postcss-value-parser": "^3.3.0" 2237 | }, 2238 | "dependencies": { 2239 | "postcss-value-parser": { 2240 | "version": "3.3.1", 2241 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", 2242 | "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" 2243 | } 2244 | } 2245 | }, 2246 | "resolve": { 2247 | "version": "1.20.0", 2248 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", 2249 | "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", 2250 | "requires": { 2251 | "is-core-module": "^2.2.0", 2252 | "path-parse": "^1.0.6" 2253 | } 2254 | }, 2255 | "resolve-from": { 2256 | "version": "4.0.0", 2257 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2258 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" 2259 | }, 2260 | "reusify": { 2261 | "version": "1.0.4", 2262 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2263 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" 2264 | }, 2265 | "rimraf": { 2266 | "version": "3.0.2", 2267 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2268 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2269 | "requires": { 2270 | "glob": "^7.1.3" 2271 | } 2272 | }, 2273 | "run-parallel": { 2274 | "version": "1.2.0", 2275 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2276 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2277 | "requires": { 2278 | "queue-microtask": "^1.2.2" 2279 | } 2280 | }, 2281 | "simple-swizzle": { 2282 | "version": "0.2.2", 2283 | "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", 2284 | "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", 2285 | "requires": { 2286 | "is-arrayish": "^0.3.1" 2287 | }, 2288 | "dependencies": { 2289 | "is-arrayish": { 2290 | "version": "0.3.2", 2291 | "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", 2292 | "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" 2293 | } 2294 | } 2295 | }, 2296 | "source-map-js": { 2297 | "version": "0.6.2", 2298 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-0.6.2.tgz", 2299 | "integrity": "sha512-/3GptzWzu0+0MBQFrDKzw/DvvMTUORvgY6k6jd/VS6iCR4RDTKWH6v6WPwQoUO8667uQEf9Oe38DxAYWY5F/Ug==" 2300 | }, 2301 | "supports-color": { 2302 | "version": "7.2.0", 2303 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2304 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2305 | "requires": { 2306 | "has-flag": "^4.0.0" 2307 | } 2308 | }, 2309 | "tailwindcss": { 2310 | "version": "2.2.6", 2311 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-2.2.6.tgz", 2312 | "integrity": "sha512-hyYAltGfxf7zPpB9lImj7uUCoa0gdUKhG91J1JXdlLq2bTAgessoA0doJ1FhKc1KwSUfx0hiohPQbMfNFgQO1A==", 2313 | "requires": { 2314 | "arg": "^5.0.0", 2315 | "bytes": "^3.0.0", 2316 | "chalk": "^4.1.1", 2317 | "chokidar": "^3.5.2", 2318 | "color": "^3.2.0", 2319 | "cosmiconfig": "^7.0.0", 2320 | "detective": "^5.2.0", 2321 | "didyoumean": "^1.2.2", 2322 | "dlv": "^1.1.3", 2323 | "fast-glob": "^3.2.7", 2324 | "fs-extra": "^10.0.0", 2325 | "glob-parent": "^6.0.0", 2326 | "html-tags": "^3.1.0", 2327 | "is-glob": "^4.0.1", 2328 | "lodash": "^4.17.21", 2329 | "lodash.topath": "^4.5.2", 2330 | "modern-normalize": "^1.1.0", 2331 | "node-emoji": "^1.8.1", 2332 | "normalize-path": "^3.0.0", 2333 | "object-hash": "^2.2.0", 2334 | "postcss-js": "^3.0.3", 2335 | "postcss-load-config": "^3.1.0", 2336 | "postcss-nested": "5.0.5", 2337 | "postcss-selector-parser": "^6.0.6", 2338 | "postcss-value-parser": "^4.1.0", 2339 | "pretty-hrtime": "^1.0.3", 2340 | "purgecss": "^4.0.3", 2341 | "quick-lru": "^5.1.1", 2342 | "reduce-css-calc": "^2.1.8", 2343 | "resolve": "^1.20.0", 2344 | "tmp": "^0.2.1" 2345 | } 2346 | }, 2347 | "tmp": { 2348 | "version": "0.2.1", 2349 | "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.1.tgz", 2350 | "integrity": "sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==", 2351 | "requires": { 2352 | "rimraf": "^3.0.0" 2353 | } 2354 | }, 2355 | "to-regex-range": { 2356 | "version": "5.0.1", 2357 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2358 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2359 | "requires": { 2360 | "is-number": "^7.0.0" 2361 | } 2362 | }, 2363 | "universalify": { 2364 | "version": "2.0.0", 2365 | "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", 2366 | "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" 2367 | }, 2368 | "util-deprecate": { 2369 | "version": "1.0.2", 2370 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2371 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 2372 | }, 2373 | "wrappy": { 2374 | "version": "1.0.2", 2375 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2376 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 2377 | }, 2378 | "xtend": { 2379 | "version": "4.0.2", 2380 | "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", 2381 | "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" 2382 | }, 2383 | "yaml": { 2384 | "version": "1.10.2", 2385 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", 2386 | "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" 2387 | } 2388 | } 2389 | } 2390 | -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "scripts": { 3 | "dev": "NODE_ENV=development ./node_modules/tailwindcss/lib/cli.js -i ./static/tailwind.css -o ./static/main.css --jit -w", 4 | "build": "NODE_ENV=production ./node_modules/tailwindcss/lib/cli.js -i ./static/tailwind.css -o ./static/main.css --jit --minify" 5 | }, 6 | "dependencies": { 7 | "@tailwindcss/forms": "^0.3.3", 8 | "tailwindcss": "^2.2.6" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /web/static/main.css: -------------------------------------------------------------------------------- 1 | /*! tailwindcss v2.2.6 | MIT License | https://tailwindcss.com */ 2 | 3 | /*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */ 4 | 5 | /* 6 | Document 7 | ======== 8 | */ 9 | 10 | /** 11 | Use a better box model (opinionated). 12 | */ 13 | 14 | *, 15 | ::before, 16 | ::after { 17 | box-sizing: border-box; 18 | } 19 | 20 | /** 21 | Use a more readable tab size (opinionated). 22 | */ 23 | 24 | html { 25 | -moz-tab-size: 4; 26 | -o-tab-size: 4; 27 | tab-size: 4; 28 | } 29 | 30 | /** 31 | 1. Correct the line height in all browsers. 32 | 2. Prevent adjustments of font size after orientation changes in iOS. 33 | */ 34 | 35 | html { 36 | line-height: 1.15; 37 | /* 1 */ 38 | -webkit-text-size-adjust: 100%; 39 | /* 2 */ 40 | } 41 | 42 | /* 43 | Sections 44 | ======== 45 | */ 46 | 47 | /** 48 | Remove the margin in all browsers. 49 | */ 50 | 51 | body { 52 | margin: 0; 53 | } 54 | 55 | /** 56 | Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) 57 | */ 58 | 59 | body { 60 | font-family: 61 | system-ui, 62 | -apple-system, /* Firefox supports this but not yet `system-ui` */ 63 | 'Segoe UI', 64 | Roboto, 65 | Helvetica, 66 | Arial, 67 | sans-serif, 68 | 'Apple Color Emoji', 69 | 'Segoe UI Emoji'; 70 | } 71 | 72 | /* 73 | Grouping content 74 | ================ 75 | */ 76 | 77 | /** 78 | 1. Add the correct height in Firefox. 79 | 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) 80 | */ 81 | 82 | hr { 83 | height: 0; 84 | /* 1 */ 85 | color: inherit; 86 | /* 2 */ 87 | } 88 | 89 | /* 90 | Text-level semantics 91 | ==================== 92 | */ 93 | 94 | /** 95 | Add the correct text decoration in Chrome, Edge, and Safari. 96 | */ 97 | 98 | abbr[title] { 99 | -webkit-text-decoration: underline dotted; 100 | text-decoration: underline dotted; 101 | } 102 | 103 | /** 104 | Add the correct font weight in Edge and Safari. 105 | */ 106 | 107 | b, 108 | strong { 109 | font-weight: bolder; 110 | } 111 | 112 | /** 113 | 1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) 114 | 2. Correct the odd 'em' font sizing in all browsers. 115 | */ 116 | 117 | code, 118 | kbd, 119 | samp, 120 | pre { 121 | font-family: 122 | ui-monospace, 123 | SFMono-Regular, 124 | Consolas, 125 | 'Liberation Mono', 126 | Menlo, 127 | monospace; 128 | /* 1 */ 129 | font-size: 1em; 130 | /* 2 */ 131 | } 132 | 133 | /** 134 | Add the correct font size in all browsers. 135 | */ 136 | 137 | small { 138 | font-size: 80%; 139 | } 140 | 141 | /** 142 | Prevent 'sub' and 'sup' elements from affecting the line height in all browsers. 143 | */ 144 | 145 | sub, 146 | sup { 147 | font-size: 75%; 148 | line-height: 0; 149 | position: relative; 150 | vertical-align: baseline; 151 | } 152 | 153 | sub { 154 | bottom: -0.25em; 155 | } 156 | 157 | sup { 158 | top: -0.5em; 159 | } 160 | 161 | /* 162 | Tabular data 163 | ============ 164 | */ 165 | 166 | /** 167 | 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) 168 | 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) 169 | */ 170 | 171 | table { 172 | text-indent: 0; 173 | /* 1 */ 174 | border-color: inherit; 175 | /* 2 */ 176 | } 177 | 178 | /* 179 | Forms 180 | ===== 181 | */ 182 | 183 | /** 184 | 1. Change the font styles in all browsers. 185 | 2. Remove the margin in Firefox and Safari. 186 | */ 187 | 188 | button, 189 | input, 190 | optgroup, 191 | select, 192 | textarea { 193 | font-family: inherit; 194 | /* 1 */ 195 | font-size: 100%; 196 | /* 1 */ 197 | line-height: 1.15; 198 | /* 1 */ 199 | margin: 0; 200 | /* 2 */ 201 | } 202 | 203 | /** 204 | Remove the inheritance of text transform in Edge and Firefox. 205 | 1. Remove the inheritance of text transform in Firefox. 206 | */ 207 | 208 | button, 209 | select { 210 | /* 1 */ 211 | text-transform: none; 212 | } 213 | 214 | /** 215 | Correct the inability to style clickable types in iOS and Safari. 216 | */ 217 | 218 | button, 219 | [type='button'], 220 | [type='reset'], 221 | [type='submit'] { 222 | -webkit-appearance: button; 223 | } 224 | 225 | /** 226 | Remove the inner border and padding in Firefox. 227 | */ 228 | 229 | ::-moz-focus-inner { 230 | border-style: none; 231 | padding: 0; 232 | } 233 | 234 | /** 235 | Restore the focus styles unset by the previous rule. 236 | */ 237 | 238 | :-moz-focusring { 239 | outline: 1px dotted ButtonText; 240 | } 241 | 242 | /** 243 | Remove the additional ':invalid' styles in Firefox. 244 | See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737 245 | */ 246 | 247 | :-moz-ui-invalid { 248 | box-shadow: none; 249 | } 250 | 251 | /** 252 | Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers. 253 | */ 254 | 255 | legend { 256 | padding: 0; 257 | } 258 | 259 | /** 260 | Add the correct vertical alignment in Chrome and Firefox. 261 | */ 262 | 263 | progress { 264 | vertical-align: baseline; 265 | } 266 | 267 | /** 268 | Correct the cursor style of increment and decrement buttons in Safari. 269 | */ 270 | 271 | ::-webkit-inner-spin-button, 272 | ::-webkit-outer-spin-button { 273 | height: auto; 274 | } 275 | 276 | /** 277 | 1. Correct the odd appearance in Chrome and Safari. 278 | 2. Correct the outline style in Safari. 279 | */ 280 | 281 | [type='search'] { 282 | -webkit-appearance: textfield; 283 | /* 1 */ 284 | outline-offset: -2px; 285 | /* 2 */ 286 | } 287 | 288 | /** 289 | Remove the inner padding in Chrome and Safari on macOS. 290 | */ 291 | 292 | ::-webkit-search-decoration { 293 | -webkit-appearance: none; 294 | } 295 | 296 | /** 297 | 1. Correct the inability to style clickable types in iOS and Safari. 298 | 2. Change font properties to 'inherit' in Safari. 299 | */ 300 | 301 | ::-webkit-file-upload-button { 302 | -webkit-appearance: button; 303 | /* 1 */ 304 | font: inherit; 305 | /* 2 */ 306 | } 307 | 308 | /* 309 | Interactive 310 | =========== 311 | */ 312 | 313 | /* 314 | Add the correct display in Chrome and Safari. 315 | */ 316 | 317 | summary { 318 | display: list-item; 319 | } 320 | 321 | /** 322 | * Manually forked from SUIT CSS Base: https://github.com/suitcss/base 323 | * A thin layer on top of normalize.css that provides a starting point more 324 | * suitable for web applications. 325 | */ 326 | 327 | /** 328 | * Removes the default spacing and border for appropriate elements. 329 | */ 330 | 331 | blockquote, 332 | dl, 333 | dd, 334 | h1, 335 | h2, 336 | h3, 337 | h4, 338 | h5, 339 | h6, 340 | hr, 341 | figure, 342 | p, 343 | pre { 344 | margin: 0; 345 | } 346 | 347 | button { 348 | background-color: transparent; 349 | background-image: none; 350 | } 351 | 352 | fieldset { 353 | margin: 0; 354 | padding: 0; 355 | } 356 | 357 | ol, 358 | ul { 359 | list-style: none; 360 | margin: 0; 361 | padding: 0; 362 | } 363 | 364 | /** 365 | * Tailwind custom reset styles 366 | */ 367 | 368 | /** 369 | * 1. Use the user's configured `sans` font-family (with Tailwind's default 370 | * sans-serif font stack as a fallback) as a sane default. 371 | * 2. Use Tailwind's default "normal" line-height so the user isn't forced 372 | * to override it to ensure consistency even when using the default theme. 373 | */ 374 | 375 | html { 376 | font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; 377 | /* 1 */ 378 | line-height: 1.5; 379 | /* 2 */ 380 | } 381 | 382 | /** 383 | * Inherit font-family and line-height from `html` so users can set them as 384 | * a class directly on the `html` element. 385 | */ 386 | 387 | body { 388 | font-family: inherit; 389 | line-height: inherit; 390 | } 391 | 392 | /** 393 | * 1. Prevent padding and border from affecting element width. 394 | * 395 | * We used to set this in the html element and inherit from 396 | * the parent element for everything else. This caused issues 397 | * in shadow-dom-enhanced elements like where the content 398 | * is wrapped by a div with box-sizing set to `content-box`. 399 | * 400 | * https://github.com/mozdevs/cssremedy/issues/4 401 | * 402 | * 403 | * 2. Allow adding a border to an element by just adding a border-width. 404 | * 405 | * By default, the way the browser specifies that an element should have no 406 | * border is by setting it's border-style to `none` in the user-agent 407 | * stylesheet. 408 | * 409 | * In order to easily add borders to elements by just setting the `border-width` 410 | * property, we change the default border-style for all elements to `solid`, and 411 | * use border-width to hide them instead. This way our `border` utilities only 412 | * need to set the `border-width` property instead of the entire `border` 413 | * shorthand, making our border utilities much more straightforward to compose. 414 | * 415 | * https://github.com/tailwindcss/tailwindcss/pull/116 416 | */ 417 | 418 | *, 419 | ::before, 420 | ::after { 421 | box-sizing: border-box; 422 | /* 1 */ 423 | border-width: 0; 424 | /* 2 */ 425 | border-style: solid; 426 | /* 2 */ 427 | border-color: currentColor; 428 | /* 2 */ 429 | } 430 | 431 | /* 432 | * Ensure horizontal rules are visible by default 433 | */ 434 | 435 | hr { 436 | border-top-width: 1px; 437 | } 438 | 439 | /** 440 | * Undo the `border-style: none` reset that Normalize applies to images so that 441 | * our `border-{width}` utilities have the expected effect. 442 | * 443 | * The Normalize reset is unnecessary for us since we default the border-width 444 | * to 0 on all elements. 445 | * 446 | * https://github.com/tailwindcss/tailwindcss/issues/362 447 | */ 448 | 449 | img { 450 | border-style: solid; 451 | } 452 | 453 | textarea { 454 | resize: vertical; 455 | } 456 | 457 | input::-moz-placeholder, textarea::-moz-placeholder { 458 | opacity: 1; 459 | color: #9ca3af; 460 | } 461 | 462 | input:-ms-input-placeholder, textarea:-ms-input-placeholder { 463 | opacity: 1; 464 | color: #9ca3af; 465 | } 466 | 467 | input::placeholder, 468 | textarea::placeholder { 469 | opacity: 1; 470 | color: #9ca3af; 471 | } 472 | 473 | button, 474 | [role="button"] { 475 | cursor: pointer; 476 | } 477 | 478 | table { 479 | border-collapse: collapse; 480 | } 481 | 482 | h1, 483 | h2, 484 | h3, 485 | h4, 486 | h5, 487 | h6 { 488 | font-size: inherit; 489 | font-weight: inherit; 490 | } 491 | 492 | /** 493 | * Reset links to optimize for opt-in styling instead of 494 | * opt-out. 495 | */ 496 | 497 | a { 498 | color: inherit; 499 | text-decoration: inherit; 500 | } 501 | 502 | /** 503 | * Reset form element properties that are easy to forget to 504 | * style explicitly so you don't inadvertently introduce 505 | * styles that deviate from your design system. These styles 506 | * supplement a partial reset that is already applied by 507 | * normalize.css. 508 | */ 509 | 510 | button, 511 | input, 512 | optgroup, 513 | select, 514 | textarea { 515 | padding: 0; 516 | line-height: inherit; 517 | color: inherit; 518 | } 519 | 520 | /** 521 | * Use the configured 'mono' font family for elements that 522 | * are expected to be rendered with a monospace font, falling 523 | * back to the system monospace stack if there is no configured 524 | * 'mono' font family. 525 | */ 526 | 527 | pre, 528 | code, 529 | kbd, 530 | samp { 531 | font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 532 | } 533 | 534 | /** 535 | * 1. Make replaced elements `display: block` by default as that's 536 | * the behavior you want almost all of the time. Inspired by 537 | * CSS Remedy, with `svg` added as well. 538 | * 539 | * https://github.com/mozdevs/cssremedy/issues/14 540 | * 541 | * 2. Add `vertical-align: middle` to align replaced elements more 542 | * sensibly by default when overriding `display` by adding a 543 | * utility like `inline`. 544 | * 545 | * This can trigger a poorly considered linting error in some 546 | * tools but is included by design. 547 | * 548 | * https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210 549 | */ 550 | 551 | img, 552 | svg, 553 | video, 554 | canvas, 555 | audio, 556 | iframe, 557 | embed, 558 | object { 559 | display: block; 560 | /* 1 */ 561 | vertical-align: middle; 562 | /* 2 */ 563 | } 564 | 565 | /** 566 | * Constrain images and videos to the parent width and preserve 567 | * their intrinsic aspect ratio. 568 | * 569 | * https://github.com/mozdevs/cssremedy/issues/14 570 | */ 571 | 572 | img, 573 | video { 574 | max-width: 100%; 575 | height: auto; 576 | } 577 | 578 | /** 579 | * Ensure the default browser behavior of the `hidden` attribute. 580 | */ 581 | 582 | [hidden] { 583 | display: none; 584 | } 585 | 586 | .border { 587 | --tw-border-opacity: 1; 588 | border-color: rgba(229, 231, 235, var(--tw-border-opacity)); 589 | } 590 | 591 | .shadow { 592 | --tw-ring-offset-shadow: 0 0 #0000; 593 | --tw-ring-shadow: 0 0 #0000; 594 | --tw-shadow: 0 0 #0000; 595 | } 596 | 597 | input[type='radio'] { 598 | -webkit-appearance: none; 599 | -moz-appearance: none; 600 | appearance: none; 601 | } 602 | 603 | input:checked ~ .radio { 604 | color: white; 605 | --tw-bg-opacity: 1; 606 | background-color: rgba(59, 130, 246, var(--tw-bg-opacity)) 607 | } 608 | 609 | .container { 610 | width: 100%; 611 | } 612 | 613 | @media (min-width: 640px) { 614 | .container { 615 | max-width: 640px; 616 | } 617 | } 618 | 619 | @media (min-width: 768px) { 620 | .container { 621 | max-width: 768px; 622 | } 623 | } 624 | 625 | @media (min-width: 1024px) { 626 | .container { 627 | max-width: 1024px; 628 | } 629 | } 630 | 631 | @media (min-width: 1280px) { 632 | .container { 633 | max-width: 1280px; 634 | } 635 | } 636 | 637 | @media (min-width: 1536px) { 638 | .container { 639 | max-width: 1536px; 640 | } 641 | } 642 | 643 | .mx-auto { 644 | margin-left: auto; 645 | margin-right: auto; 646 | } 647 | 648 | .mx-1\.5 { 649 | margin-left: 0.375rem; 650 | margin-right: 0.375rem; 651 | } 652 | 653 | .mx-1 { 654 | margin-left: 0.25rem; 655 | margin-right: 0.25rem; 656 | } 657 | 658 | .mx-3 { 659 | margin-left: 0.75rem; 660 | margin-right: 0.75rem; 661 | } 662 | 663 | .mb-auto { 664 | margin-bottom: auto; 665 | } 666 | 667 | .mt-auto { 668 | margin-top: auto; 669 | } 670 | 671 | .mt-14 { 672 | margin-top: 3.5rem; 673 | } 674 | 675 | .mb-4 { 676 | margin-bottom: 1rem; 677 | } 678 | 679 | .mb-2 { 680 | margin-bottom: 0.5rem; 681 | } 682 | 683 | .mt-4 { 684 | margin-top: 1rem; 685 | } 686 | 687 | .block { 688 | display: block; 689 | } 690 | 691 | .flex { 692 | display: flex; 693 | } 694 | 695 | .inline-flex { 696 | display: inline-flex; 697 | } 698 | 699 | .hidden { 700 | display: none; 701 | } 702 | 703 | .h-full { 704 | height: 100%; 705 | } 706 | 707 | .min-h-screen { 708 | min-height: 100vh; 709 | } 710 | 711 | .w-screen { 712 | width: 100vw; 713 | } 714 | 715 | .w-2\/3 { 716 | width: 66.666667%; 717 | } 718 | 719 | .w-1\/2 { 720 | width: 50%; 721 | } 722 | 723 | .w-full { 724 | width: 100%; 725 | } 726 | 727 | .cursor-pointer { 728 | cursor: pointer; 729 | } 730 | 731 | .appearance-none { 732 | -webkit-appearance: none; 733 | -moz-appearance: none; 734 | appearance: none; 735 | } 736 | 737 | .flex-row { 738 | flex-direction: row; 739 | } 740 | 741 | .flex-col { 742 | flex-direction: column; 743 | } 744 | 745 | .items-center { 746 | align-items: center; 747 | } 748 | 749 | .justify-center { 750 | justify-content: center; 751 | } 752 | 753 | .self-center { 754 | align-self: center; 755 | } 756 | 757 | .rounded-lg { 758 | border-radius: 0.5rem; 759 | } 760 | 761 | .border { 762 | border-width: 1px; 763 | } 764 | 765 | .border-gray-50 { 766 | --tw-border-opacity: 1; 767 | border-color: rgba(249, 250, 251, var(--tw-border-opacity)); 768 | } 769 | 770 | .border-gray-300 { 771 | --tw-border-opacity: 1; 772 | border-color: rgba(209, 213, 219, var(--tw-border-opacity)); 773 | } 774 | 775 | .border-gray-200 { 776 | --tw-border-opacity: 1; 777 | border-color: rgba(229, 231, 235, var(--tw-border-opacity)); 778 | } 779 | 780 | .bg-blue-50 { 781 | --tw-bg-opacity: 1; 782 | background-color: rgba(239, 246, 255, var(--tw-bg-opacity)); 783 | } 784 | 785 | .bg-gray-200 { 786 | --tw-bg-opacity: 1; 787 | background-color: rgba(229, 231, 235, var(--tw-bg-opacity)); 788 | } 789 | 790 | .bg-blue-500 { 791 | --tw-bg-opacity: 1; 792 | background-color: rgba(59, 130, 246, var(--tw-bg-opacity)); 793 | } 794 | 795 | .bg-gray-300 { 796 | --tw-bg-opacity: 1; 797 | background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); 798 | } 799 | 800 | .px-4 { 801 | padding-left: 1rem; 802 | padding-right: 1rem; 803 | } 804 | 805 | .py-2 { 806 | padding-top: 0.5rem; 807 | padding-bottom: 0.5rem; 808 | } 809 | 810 | .px-3 { 811 | padding-left: 0.75rem; 812 | padding-right: 0.75rem; 813 | } 814 | 815 | .pt-4 { 816 | padding-top: 1rem; 817 | } 818 | 819 | .text-center { 820 | text-align: center; 821 | } 822 | 823 | .text-3xl { 824 | font-size: 1.875rem; 825 | line-height: 2.25rem; 826 | } 827 | 828 | .text-sm { 829 | font-size: 0.875rem; 830 | line-height: 1.25rem; 831 | } 832 | 833 | .text-xs { 834 | font-size: 0.75rem; 835 | line-height: 1rem; 836 | } 837 | 838 | .font-bold { 839 | font-weight: 700; 840 | } 841 | 842 | .leading-tight { 843 | line-height: 1.25; 844 | } 845 | 846 | .text-gray-700 { 847 | --tw-text-opacity: 1; 848 | color: rgba(55, 65, 81, var(--tw-text-opacity)); 849 | } 850 | 851 | .text-white { 852 | --tw-text-opacity: 1; 853 | color: rgba(255, 255, 255, var(--tw-text-opacity)); 854 | } 855 | 856 | .text-gray-500 { 857 | --tw-text-opacity: 1; 858 | color: rgba(107, 114, 128, var(--tw-text-opacity)); 859 | } 860 | 861 | .text-blue-500 { 862 | --tw-text-opacity: 1; 863 | color: rgba(59, 130, 246, var(--tw-text-opacity)); 864 | } 865 | 866 | .underline { 867 | text-decoration: underline; 868 | } 869 | 870 | .shadow { 871 | --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 872 | box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); 873 | } 874 | 875 | .hover\:opacity-75:hover { 876 | opacity: 0.75; 877 | } 878 | 879 | .focus\:outline-none:focus { 880 | outline: 2px solid transparent; 881 | outline-offset: 2px; 882 | } 883 | 884 | @media (min-width: 768px) { 885 | .md\:mx-3 { 886 | margin-left: 0.75rem; 887 | margin-right: 0.75rem; 888 | } 889 | 890 | .md\:max-w-screen-sm { 891 | max-width: 640px; 892 | } 893 | } 894 | -------------------------------------------------------------------------------- /web/static/tailwind.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @layer base { 6 | input[type='radio'] { 7 | -webkit-appearance: none; 8 | -moz-appearance: none; 9 | appearance: none; 10 | } 11 | input:checked ~ .radio { 12 | color: white; 13 | @apply bg-blue-500 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /web/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: "jit", 3 | purge: ["./templates/**/*.html"], 4 | plugins: [ 5 | // require('@tailwindcss/forms'), 6 | // ... 7 | ], 8 | }; -------------------------------------------------------------------------------- /web/templates/index.tpl.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hello World 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | Logo 19 | Signup 20 | 21 | 22 | 23 | 24 | 25 | First Name 26 | 27 | 42 | 43 | 44 | 45 | Last Name 46 | 47 | 62 | 63 | 64 | 65 | 66 | 67 | Email Address 68 | 69 | 84 | 85 | 86 | 87 | 88 | Password 89 | 90 | 105 | 106 | 107 | 108 | 109 | Mobile Number 110 | 111 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | Borrower 147 | 148 | 149 | 150 | Introducer 164 | 165 | 166 | 167 | Broker 181 | 182 | 183 | 184 | 185 | 199 | Sign Up 200 | 201 | 202 | 203 | Already have an account? Sign in 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | --------------------------------------------------------------------------------
Signup
203 | Already have an account? Sign in 204 |