reorg: separate frontend and backend

This commit is contained in:
2025-02-23 11:45:40 -08:00
parent b2b70f3eb1
commit b3cf5fb3c8
12 changed files with 7752 additions and 2154 deletions

32
backend/package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "mpvqueue",
"version": "1.0.0",
"main": "build/server.js",
"scripts": {
"build": "tsc -b",
"dev": "concurrently \"tsc -w -p src\" \"nodemon build/server.js\"",
"start": "node build/index.js"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/node": "^22.13.4",
"@types/ws": "^8.5.14",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/node-fetch": "^2.6.12",
"classnames": "^2.5.1",
"express": "^4.21.2",
"express-ws": "^5.0.2",
"link-preview-js": "^3.0.14",
"node-fetch": "^2.7.0",
"react-icons": "^5.4.0",
"ws": "^8.18.0"
}
}