(Proper) Initial commit
This commit is contained in:
parent
48c0059860
commit
32796e4026
19 changed files with 6094 additions and 97 deletions
23
package.json
23
package.json
|
@ -1,12 +1,16 @@
|
|||
{
|
||||
"name": "lucida-queue",
|
||||
"version": "0.0.0",
|
||||
"version": "1.0.0",
|
||||
"description": "Queue for downloading from lucida.to",
|
||||
"main": "src/download.ts",
|
||||
"main": "backend/app.ts",
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"test": "echo \"Error: no test specified\" && exit 1",
|
||||
"server": "npx ts-node src/index.ts"
|
||||
"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",
|
||||
|
@ -16,12 +20,23 @@
|
|||
"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",
|
||||
"typescript": "^5.7.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