diff --git a/backend/main.go b/backend/main.go
index b7826b162204b5d43e410cf1e0d24b4506deb96f..1df18f84c38a6ea6e04317ac3f3dd2b7b8a61184 100644
--- a/backend/main.go
+++ b/backend/main.go
@@ -2,7 +2,7 @@ package main
 
 import (
 	"context"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"github.com/hibiken/asynq"
 	"github.com/prometheus/client_golang/prometheus"
 	"github.com/prometheus/client_golang/prometheus/promauto"
diff --git a/backend/process.go b/backend/process.go
index 1923f54d62c689c3300b5f537066eb01f1841a42..a934357c3df314a8dff7e2b6fe0cd81ab7ccc1bc 100644
--- a/backend/process.go
+++ b/backend/process.go
@@ -4,7 +4,7 @@ import (
 	"context"
 	"encoding/json"
 	"fmt"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"github.com/hibiken/asynq"
 	"github.com/prometheus/client_golang/prometheus"
 	"os"
diff --git a/backend/resize.go b/backend/resize.go
index eb3931fd87b247d11856fce36525a510bcae2a7f..88fbd662badf722762d34e1247e358bad3418c14 100644
--- a/backend/resize.go
+++ b/backend/resize.go
@@ -2,7 +2,7 @@ package main
 
 import (
 	"fmt"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"github.com/justjanne/imgconv"
 	"gopkg.in/gographics/imagick.v3/imagick"
 	"path/filepath"
diff --git a/frontend/main.go b/frontend/main.go
index df215d81395220fea8f6a7831a469effafb07ca6..a6896aa295b113ec66f1055fe84830973196236f 100644
--- a/frontend/main.go
+++ b/frontend/main.go
@@ -3,7 +3,7 @@ package main
 import (
 	"context"
 	"database/sql"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"github.com/hibiken/asynq"
 	_ "github.com/lib/pq"
 	"log"
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index d02c3c036069995a13ae97541dd097b698d95651..d304013260e9625e0a5febec3aa4833c8c6907d4 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -1,5 +1,5 @@
 {
-  "name": "imghost-frontend",
+  "name": "imghost",
   "lockfileVersion": 2,
   "requires": true,
   "packages": {
diff --git a/frontend/page_image_detail.go b/frontend/page_image_detail.go
index 81bd483e9097df38505e84ad5f012c8129697f35..242de0189715c1e93a7f27a838746f8cb4ec0bd8 100644
--- a/frontend/page_image_detail.go
+++ b/frontend/page_image_detail.go
@@ -2,7 +2,7 @@ package main
 
 import (
 	"fmt"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	_ "github.com/lib/pq"
 	"net/http"
 	"os"
diff --git a/frontend/page_image_list.go b/frontend/page_image_list.go
index aa0ab6d7a4504becead8d91fecd94de41e5c2c72..1e56b58062128567cdadfb73cfddd80e10891375 100644
--- a/frontend/page_image_list.go
+++ b/frontend/page_image_list.go
@@ -2,7 +2,7 @@ package main
 
 import (
 	"database/sql"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"net/http"
 	"path"
 	"strconv"
diff --git a/frontend/page_upload.go b/frontend/page_upload.go
index 0387c251f25f1aa75a3e6723f96fd5191cec08f1..0f94f5d7a414187011f4d37087ec661e736f2fef 100644
--- a/frontend/page_upload.go
+++ b/frontend/page_upload.go
@@ -5,7 +5,7 @@ import (
 	"encoding/base64"
 	"encoding/json"
 	"fmt"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"io"
 	"mime/multipart"
 	"net/http"
diff --git a/frontend/templates/_base.html b/frontend/templates/_base.html
index 32daf1d189297bc6b2ef3d840afacbeae0c51e75..5ca65f90496678f1b3fe7ec237c552225d0111a8 100644
--- a/frontend/templates/_base.html
+++ b/frontend/templates/_base.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
 {{template "header" .}}
 {{template "navigation" .User}}
 {{template "content" .}}
diff --git a/frontend/templates/_footer.html b/frontend/templates/_footer.html
index fe5d3d9bba06cc55f06009529442604d97ae461b..4ea4391ea167c0da3977f3dd634dc5af5eacfe37 100644
--- a/frontend/templates/_footer.html
+++ b/frontend/templates/_footer.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
 {{define "footer"}}
 <script src="/assets/js/component/fake-input.js"></script>
 <script src="/assets/js/component/copy.js"></script>
diff --git a/frontend/templates/_header.html b/frontend/templates/_header.html
index fc105fae6ca32d790df7553bafc81a20a4d136d8..7e4f67b66990e5b54a589cf21878095ecd7f63c0 100644
--- a/frontend/templates/_header.html
+++ b/frontend/templates/_header.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
 {{define "header"}}
 <!DOCTYPE html>
 <meta charset="utf-8">
diff --git a/frontend/templates/_navigation.html b/frontend/templates/_navigation.html
index 698b784bc2a8a2f0953e99ae4f9cc8118de0000e..7d38df7652762ce4c0ce7d3e1c30242da29581cb 100644
--- a/frontend/templates/_navigation.html
+++ b/frontend/templates/_navigation.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
 {{define "navigation"}}
     <nav class="navigation">
         <ul>
diff --git a/frontend/templates/error.html b/frontend/templates/error.html
index 43279f66ccbae51d34c8aa946a92fec238b14192..59f0219c756d25fe1385f174f38870cb06c2af68 100644
--- a/frontend/templates/error.html
+++ b/frontend/templates/error.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ErrorData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.ErrorData*/ -}}
 {{define "title"}}Error | ik8r{{end}}
 {{define "content"}}
   <div class="page">
diff --git a/frontend/templates/image_detail.html b/frontend/templates/image_detail.html
index 280d20d99c0d2832bbb190c172e44578a6387d92..7bca8fb5236fa1a9d7ed2d0f318fbceef39ddc56 100644
--- a/frontend/templates/image_detail.html
+++ b/frontend/templates/image_detail.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ImageDetailData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.ImageDetailData*/ -}}
 {{define "title"}}{{.Image.Title}} | ik8r{{end}}
 {{define "content"}}
 <div class="page image detail">
diff --git a/frontend/templates/image_list.html b/frontend/templates/image_list.html
index ec890ac2811a6ea1ce331a60eb6806a9057b0a47..ce33d65d294af6ad3a8de052eb6e8268b5aa0fe2 100644
--- a/frontend/templates/image_list.html
+++ b/frontend/templates/image_list.html
@@ -1,4 +1,4 @@
-{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ImageListData*/ -}}
+{{- /*gotype: git.kuschku.de/justjanne/imghost.ImageListData*/ -}}
 {{define "title"}}My Images | ik8r{{end}}
 {{define "content"}}
 <div class="page image list">
diff --git a/frontend/util.go b/frontend/util.go
index 9290442d39e43153ce3b80fd391abfa3b2bdd4f7..1aac113a0ceccafad60b11cef14b056daa7b5708 100644
--- a/frontend/util.go
+++ b/frontend/util.go
@@ -5,7 +5,7 @@ import (
 	"database/sql"
 	"encoding/json"
 	"fmt"
-	"git.kuschku.de/justjanne/imghost-frontend/shared"
+	"git.kuschku.de/justjanne/imghost/shared"
 	"github.com/hibiken/asynq"
 	"html/template"
 	"net/http"