Files
deployment-server/package.json
Sebastian Seedorf 06241729e2 Initial commit
2022-01-24 16:04:58 +01:00

27 lines
642 B
JSON

{
"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"
}
}