From 1b527d3386cdb4bcdd72cc00cf67db492cd69f05 Mon Sep 17 00:00:00 2001 From: Niklas Heim Date: Mon, 19 Feb 2024 16:42:47 +0100 Subject: [PATCH] package in root? --- docs/labs/index.md | 2 +- docs/package-lock.json => package-lock.json | 0 package.json | 13 +++++++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) rename docs/package-lock.json => package-lock.json (100%) create mode 100644 package.json diff --git a/docs/labs/index.md b/docs/labs/index.md index c458e5e..9e8a68d 100644 --- a/docs/labs/index.md +++ b/docs/labs/index.md @@ -29,7 +29,7 @@ The solutions to the given tasks will be available after the last lecture of the ## Where to get help If you struggle with an exercise or an assignment, feel free to contact your tutor via email (the -emails are listed [here](/organization#teachers). +emails are listed [here](../organization#teachers). There are also online communities where you can get in touch with your peers. Keep in mind our academic principles - no plagiarism, avoid sharing code snippets directly, and try to come up with a diff --git a/docs/package-lock.json b/package-lock.json similarity index 100% rename from docs/package-lock.json rename to package-lock.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..d991d29 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "scripts": { + "docs:dev": "vitepress dev", + "docs:build": "vitepress build", + "docs:preview": "vitepress preview" + }, + "dependencies": { + "markdown-it": "^14.0.0", + "markdown-it-footnote": "^4.0.0", + "markdown-it-mathjax3": "^4.3.2", + "vitepress": "^1.0.0-rc.44" + } +}