Fixed Jenkinsfile

This commit is contained in:
Sebastian Seedorf
2022-01-26 00:14:02 +01:00
parent 715acbcff7
commit 143af212f0
2 changed files with 68 additions and 127 deletions

View File

@@ -4,13 +4,19 @@
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"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": {
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.2"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.41",
@@ -18,10 +24,5 @@
"@types/pug": "^2.0.4",
"tsc-watch": "^4.2.9",
"typescript": "^4.2.4"
},
"dependencies": {
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pug": "^3.0.2"
}
}