28 lines
677 B
JSON
28 lines
677 B
JSON
{
|
|
"name": "vidrip-backend",
|
|
"version": "1.0.0",
|
|
"description": "Backend for VidRip - Respectful YouTube video drip downloader",
|
|
"main": "dist/server.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"cors": "^2.8.5",
|
|
"better-sqlite3": "^9.2.2",
|
|
"node-cron": "^3.0.3",
|
|
"dotenv": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/better-sqlite3": "^7.6.8",
|
|
"@types/node": "^20.10.6",
|
|
"@types/node-cron": "^3.0.11",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|