Implement youtube-api

This commit is contained in:
2024-01-13 22:06:31 +07:00
parent 98309793dc
commit 70e06b79be
6 changed files with 547 additions and 39 deletions
+13 -2
View File
@@ -2,11 +2,22 @@
"name": "json-server-vercel",
"version": "1.0.0",
"description": "Deploy JSON Server to Vercel",
"type": "module",
"main": "api/server.js",
"scripts": {
"start": "node api/server.js"
"start-flask": "python main.py",
"start-express": "nodemon api/server.js",
"start":"npm run start-proxy & npm run start-flask & npm run start-express"
},
"dependencies": {
"json-server": "^0.17.4"
"json-server": "^0.17.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"http-proxy-middleware": "^2.0.6",
"node-youtube-music": "^0.10.3"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}