blob: 547304506af0f23b10391d7ca5700d9bcf3b19dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"name": "nodejs-git-frontend",
"version": "1.0.0",
"description": "A simple git web-frontend made with nodejs",
"main": "app.js",
"author": "HampusMat",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html"
},
"dependencies": {
"bootstrap": "5.0.0-beta3",
"date-fns": "^2.21.1",
"express": "5.0.0-alpha.8"
},
"devDependencies": {
"@parcel/transformer-sass": "2.0.0-beta.2",
"parcel": "^2.0.0-beta.2"
}
}
|