NPM: Initial commit

This patch adds a package configuration for convenient scripts in development
This commit is contained in:
networkException 2021-10-25 19:34:50 +02:00
parent 712340ab65
commit fea3ba16a9
2 changed files with 1575 additions and 0 deletions

1554
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

21
package.json Normal file
View file

@ -0,0 +1,21 @@
{
"name": "nwex.de",
"version": "1.0.0",
"description": "Landing page for nwex.de",
"scripts": {
"start": "concurrently --kill-others 'tsc -p tsconfig.json --watch' 'reload -b'"
},
"repository": {
"type": "git",
"url": "https://gitlab.upi.li/networkException/nwex.de"
},
"author": "networkException",
"license": "UNLICENSED",
"devDependencies": {
"concurrently": "^6.3.0",
"reload": "^3.2.0"
},
"dependencies": {
"typescript": "^4.4.4"
}
}