Npm init + express + nodemon

This commit is contained in:
2022-04-24 00:02:43 +02:00
parent f7931045c7
commit 6526ab8fe7
2 changed files with 3136 additions and 0 deletions

3119
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

17
package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "bullet-hell-server",
"version": "1.0.0",
"description": "Scoreboard server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Minzkraut",
"license": "ISC",
"dependencies": {
"express": "^4.17.3"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}