chore: Add dockers
This commit is contained in:
parent
f9a729f22c
commit
15091444be
7 changed files with 992 additions and 763 deletions
42
backend/package.json
Normal file
42
backend/package.json
Normal file
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
"name": "lucida-queue",
|
||||
"version": "0.1.0",
|
||||
"description": "Queue for downloading from lucida.to",
|
||||
"main": "app.ts",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"lint": "eslint .",
|
||||
"backend": "ts-node backend/app.ts",
|
||||
"backend-dev": "ts-node-dev backend/app.ts",
|
||||
"frontend": "http-server frontend",
|
||||
"frontend-dev": "live-server frontend"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@git.depeuter.dev:tdpeuter/lucida-queue.git"
|
||||
},
|
||||
"author": "Tibo De Peuter <tibo@depeuter.dev>",
|
||||
"license": "UNLICENSED",
|
||||
"dependencies": {
|
||||
"body-parser": "^1.20.3",
|
||||
"cors": "^2.8.5",
|
||||
"express": "^4.21.2",
|
||||
"jsdom": "^25.0.1",
|
||||
"playwright": "1.47.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.17.0",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/express": "^5.0.0",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^22.10.2",
|
||||
"eslint": "^9.17.0",
|
||||
"globals": "^15.14.0",
|
||||
"http-server": "^14.1.1",
|
||||
"live-server": "^1.2.2",
|
||||
"ts-node-dev": "^2.0.0",
|
||||
"typescript": "^5.7.2",
|
||||
"typescript-eslint": "^8.19.0"
|
||||
}
|
||||
}
|
Reference in a new issue