1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
"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",
"highlight.js": "^10.4.1",
"js-yaml": "^4.1.0",
"nodegit": "^0.27.0",
"vue": "^3.0.11",
"vue-loading-overlay": "^4.0.2",
"vue-router": "^4.0.8"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.0.0-beta.2",
"@parcel/transformer-vue": "^2.0.0-beta.2",
"eslint": "^7.27.0",
"eslint-plugin-vue": "^7.9.0",
"parcel": "^2.0.0-beta.2"
}
}
|