Add Boilerplate express; Add scripts; Setup folderstructure;

This commit is contained in:
Stefan-5422
2022-02-25 12:59:05 +01:00
parent c9455c2ab8
commit c32fffd538
6 changed files with 550 additions and 1 deletions
+10 -1
View File
@@ -4,7 +4,9 @@
"description": "",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"debug": "nodemon src/index.ts"
},
"repository": {
"type": "git",
@@ -17,6 +19,13 @@
},
"homepage": "https://github.com/GithubOrgProjectPiza/server#readme",
"dependencies": {
"@types/express": "^4.17.13",
"express": "^4.17.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/node": "^8.9.5",
"nodemon": "^1.18.4"
}
}