chore(init): project setup with Docker support

This commit is contained in:
Leons Aleksandrovs
2025-07-07 13:21:35 +03:00
commit 4284804536
28 changed files with 8353 additions and 0 deletions

22
backend/package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "eslint . && node index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"ws": "^8.18.3"
},
"devDependencies": {
"prettier": "^3.6.2"
}
}