From fd188083291a7fe0e762040ccac43607c49eb794 Mon Sep 17 00:00:00 2001
From: Matt Grau <graum@phys.ethz.ch>
Date: Tue, 13 Jul 2021 14:10:58 +0200
Subject: [PATCH] create frontend package.json

---
 README.md             |  7 +++++++
 frontend/package.json | 11 +++++++++++
 2 files changed, 18 insertions(+)
 create mode 100644 frontend/package.json

diff --git a/README.md b/README.md
index b1af2c2..854fdf3 100644
--- a/README.md
+++ b/README.md
@@ -30,4 +30,11 @@ touch device/__init__.py
 
 ```bash
 pip install flask
+```
+
+## Create JS Frontend
+```bash
+mkdir frontend
+cd frontend
+npm init
 ```
\ No newline at end of file
diff --git a/frontend/package.json b/frontend/package.json
new file mode 100644
index 0000000..780a501
--- /dev/null
+++ b/frontend/package.json
@@ -0,0 +1,11 @@
+{
+  "name": "frontend",
+  "version": "1.0.0",
+  "description": "TIQI JS tutorial frontend",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "Matt Grau",
+  "license": "ISC"
+}
-- 
GitLab