Created file structure and initialized express.js backend

This commit is contained in:
2024-04-22 11:41:41 +03:00
parent 71db0bea97
commit 14456c5ab4
2 changed files with 29 additions and 0 deletions

15
app/backend/package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node ./index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^4.19.2"
}
}