Files
QueueCube/package.json

33 lines
837 B
JSON
Raw Normal View History

2025-02-15 00:37:32 -08:00
{
"name": "mpvqueue",
"version": "1.0.0",
"main": "build/server.js",
"scripts": {
"build": "tsc -b && cd frontend && npm run build",
2025-02-15 01:26:10 -08:00
"dev": "concurrently \"cd frontend && npm run dev\" \"tsc -w -p src\" \"nodemon build/server.js\"",
"start": "node build/index.js"
2025-02-15 00:37:32 -08:00
},
"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",
2025-02-15 01:26:10 -08:00
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
2025-02-15 00:37:32 -08:00
"typescript": "^5.7.3"
},
"dependencies": {
2025-02-22 01:09:33 -08:00
"@types/node-fetch": "^2.6.12",
2025-02-15 12:15:41 -08:00
"classnames": "^2.5.1",
2025-02-15 00:37:32 -08:00
"express": "^4.21.2",
"express-ws": "^5.0.2",
"link-preview-js": "^3.0.14",
2025-02-22 01:09:33 -08:00
"node-fetch": "^2.7.0",
2025-02-15 12:15:41 -08:00
"react-icons": "^5.4.0",
2025-02-15 00:37:32 -08:00
"ws": "^8.18.0"
}
}