aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-05-19 15:49:48 +0200
committerHampusM <hampus@hampusmat.com>2021-05-19 15:49:48 +0200
commitfcc482fd61077a6af6cd9fcfad6f75c72aa59355 (patch)
tree648e2804072b3d681095c355207111ad6d7df059 /package.json
parent4a290134fab0f4536c310dbc33f991d0ad9f38b2 (diff)
Switched package manager to npm & added nodegit to package.json
Diffstat (limited to 'package.json')
-rw-r--r--package.json51
1 files changed, 30 insertions, 21 deletions
diff --git a/package.json b/package.json
index 26a2e08..2d788a0 100644
--- a/package.json
+++ b/package.json
@@ -1,23 +1,32 @@
{
- "name": "nodejs-git-frontend",
- "version": "1.0.0",
- "description": "A simple git web-frontend made with nodejs",
- "main": "dist/app.html",
- "author": "HampusMat",
- "license": "MIT",
- "private": true,
- "scripts": {
- "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",
- "js-yaml": "^4.1.0"
- },
- "devDependencies": {
- "@parcel/transformer-sass": "2.0.0-beta.2",
- "parcel": "^2.0.0-beta.2"
- }
+ "name": "nodejs-git-frontend",
+ "version": "1.0.0",
+ "description": "A simple git web-frontend made with nodejs",
+ "main": "dist/app.html",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "dev": "parcel watch --no-source-maps src/app.html",
+ "build": "parcel build --no-source-maps src/app.html"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+ssh://git@gitlab.com/HampusMat/nodejs-git-frontend.git"
+ },
+ "author": "HampusMat",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://gitlab.com/HampusMat/nodejs-git-frontend/issues"
+ },
+ "homepage": "https://gitlab.com/HampusMat/nodejs-git-frontend#readme",
+ "dependencies": {
+ "bootstrap": "^5.0.0-beta3",
+ "date-fns": "^2.21.3",
+ "express": "^5.0.0-alpha.8",
+ "js-yaml": "^4.1.0",
+ "nodegit": "^0.27.0"
+ },
+ "devDependencies": {
+ "@parcel/transformer-sass": "^2.0.0-beta.2",
+ "parcel": "^2.0.0-beta.2"
+ }
}