diff --git a/dashboard/LICENSE b/dashboard/LICENSE
new file mode 100644
index 00000000..f19bf520
--- /dev/null
+++ b/dashboard/LICENSE
@@ -0,0 +1,14 @@
+Copyright (C) 2021 Fosscord and contributors
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as
+published by the Free Software Foundation, either version 3 of the
+License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see <https://www.gnu.org/licenses/>.
\ No newline at end of file
diff --git a/dashboard/package.json b/dashboard/package.json
index 0967ef42..1009d658 100644
--- a/dashboard/package.json
+++ b/dashboard/package.json
@@ -1 +1,23 @@
-{}
+{
+ "name": "@fosscord/dashboard",
+ "version": "1.0.0",
+ "description": "Dashboard for Fosscord",
+ "main": "dist/index.js",
+ "types": "src/index.ts",
+ "scripts": {
+ "test": "npm run build && jest --coverage ./tests",
+ "build": "npx tsc -p .",
+ "start": "node dist/start.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/fosscord/fosscord-server.git"
+ },
+ "keywords": [],
+ "author": "",
+ "license": "GPLV3",
+ "bugs": {
+ "url": "https://github.com/fosscord/fosscord-server/issues"
+ },
+ "homepage": "https://github.com/fosscord/fosscord-server#readme"
+}
diff --git a/dashboard/src/index.ts b/dashboard/src/index.ts
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/dashboard/src/index.ts
|