diff options
author | HampusM <hampus@hampusmat.com> | 2021-04-20 10:36:55 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-04-20 10:36:55 +0200 |
commit | 5bbbbad5f192afba603892d6b46aa53be4e71b18 (patch) | |
tree | 50b15dad6c3cdb66291bd2846ded505bd75cd359 /package.json | |
parent | 15992970bc9d3eec402f6d85e40236e3095f0fc0 (diff) |
Moved most of the page to js, added settings & removed a bunch of hardcoded stuff
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package.json b/package.json index 5473045..26a2e08 100644 --- a/package.json +++ b/package.json @@ -2,18 +2,19 @@ "name": "nodejs-git-frontend", "version": "1.0.0", "description": "A simple git web-frontend made with nodejs", - "main": "app.js", + "main": "dist/app.html", "author": "HampusMat", "license": "MIT", "private": true, "scripts": { - "dev": "parcel src/index.html", - "build": "parcel build src/index.html" + "dev": "parcel watch --no-source-maps src/app.html", + "build": "parcel build --no-source-maps src/app.html" }, "dependencies": { "bootstrap": "5.0.0-beta3", "date-fns": "^2.21.1", - "express": "5.0.0-alpha.8" + "express": "5.0.0-alpha.8", + "js-yaml": "^4.1.0" }, "devDependencies": { "@parcel/transformer-sass": "2.0.0-beta.2", |