NewTube/package.json

47 lines
1.3 KiB
JSON

{
"name": "newtube",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "ng serve",
"build": "ng build",
"preview": "ng serve --configuration=production",
"api": "node --env-file=.env.local ./server/index.mjs",
"api:watch": "node --watch --env-file=.env.local ./server/index.mjs",
"test:playlists": "node ./server/tests/playlist_visibility.test.mjs"
},
"dependencies": {
"@angular/build": "^20.1.0",
"@angular/cdk": "^20.2.4",
"@angular/cli": "^20.1.0",
"@angular/common": "^20.1.0",
"@angular/compiler": "^20.1.0",
"@angular/compiler-cli": "^20.1.0",
"@angular/core": "^20.1.0",
"@angular/forms": "^20.1.0",
"@angular/platform-browser": "^20.1.0",
"@angular/router": "^20.1.6-0",
"@google/genai": "latest",
"axios": "^1.12.1",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.6.0",
"cheerio": "^1.1.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.1.5",
"ffmpeg-static": "^5.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"rxjs": "^7.8.2",
"tailwindcss": "latest",
"youtube-dl-exec": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}