Initial commit

This commit is contained in:
Sebastian Seedorf
2022-01-24 16:04:58 +01:00
commit 06241729e2
14 changed files with 1176 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "deployment-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\" --onFailure \"echo Beep! Compilation Failed\"",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^14.2.0",
"env-var": "^7.1.1",
"express": "^4.17.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.10",
"tsc-watch": "^4.6.0",
"typescript": "^4.5.5"
}
}