28 lines
1.0 KiB
JSON
28 lines
1.0 KiB
JSON
|
|
{
|
||
|
|
"name": "proxytmdb",
|
||
|
|
"version": "1.0.0",
|
||
|
|
"description": "Proxy/cache local de l'API TMDB avec notes IMDb et matching titre/annee/episode",
|
||
|
|
"type": "module",
|
||
|
|
"private": true,
|
||
|
|
"engines": {
|
||
|
|
"node": ">=20"
|
||
|
|
},
|
||
|
|
"scripts": {
|
||
|
|
"start": "node --env-file-if-exists=.env server.js",
|
||
|
|
"cron": "node --env-file-if-exists=.env cron/runAll.js",
|
||
|
|
"cron:imdb": "node --env-file-if-exists=.env cron/imdbRatings.js",
|
||
|
|
"cron:tmdb": "node --env-file-if-exists=.env cron/tmdbSync.js",
|
||
|
|
"cron:justwatch": "node --env-file-if-exists=.env cron/justwatchSync.js",
|
||
|
|
"cron:tmdb2imdb": "node --env-file-if-exists=.env cron/tmdb2imdb.js",
|
||
|
|
"cron:search": "node --env-file-if-exists=.env cron/buildSearch.js",
|
||
|
|
"cron:ambiguity": "node --env-file-if-exists=.env cron/ambiguity.js",
|
||
|
|
"test": "node --env-file-if-exists=.env --test test/*.test.js"
|
||
|
|
},
|
||
|
|
"dependencies": {
|
||
|
|
"@fastify/formbody": "^8.0.1",
|
||
|
|
"@fastify/secure-session": "^8.1.0",
|
||
|
|
"@fastify/static": "^8.0.4",
|
||
|
|
"fastify": "^5.2.0"
|
||
|
|
}
|
||
|
|
}
|