Initial commit

This commit is contained in:
Sebastian Seedorf
2021-04-17 22:31:16 +02:00
commit a1df114a5a
20 changed files with 3001 additions and 0 deletions

27
package.json Normal file
View File

@@ -0,0 +1,27 @@
{
"name": "wannistesvorbei",
"version": "1.0.0",
"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\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@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"
}
}