Add npm package

This commit is contained in:
Tibo De Peuter 2023-07-30 15:28:05 +02:00
parent 8ce478c532
commit 49dede0296
3 changed files with 4211 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.idea
node_modules

4187
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

22
package.json Normal file
View file

@ -0,0 +1,22 @@
{
"name": "tdpeuter",
"version": "0.1.0",
"description": "Portfolio website",
"main": "index.html",
"scripts": {
"start": "live-server --port=3000 .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://git.depeuter.dev/tdpeuter/tdpeuter.git"
},
"keywords": [
"Portfolio"
],
"author": "Tibo De Peuter <tibo@depeuter.dev>",
"license": "GPL-3.0-only",
"devDependencies": {
"live-server": "^1.2.2"
}
}