Files
our_recipe_atlas/package.json
T
2026-08-13 18:36:31 +09:00

38 lines
909 B
JSON

{
"name": "our_recipe_atlas",
"version": "0.1.0",
"private": true,
"description": "A private recipe archive for importing Instagram and YouTube recipes.",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "node --watch src/server.js",
"start": "node src/server.js",
"test": "node --test",
"lint": "eslint ."
},
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/jwt": "^10.2.1",
"@fastify/oauth2": "^8.2.1",
"@fastify/static": "^10.1.3",
"dotenv": "^17.4.2",
"fastify": "^5.11.3",
"fastify-plugin": "^6.0.0",
"google-auth-library": "^11.0.1",
"insta-fetcher": "^1.4.0",
"mongodb": "^7.5.0",
"openai": "^7.4.0",
"sharp": "^0.35.3",
"youtubei.js": "^17.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.1",
"globals": "^17.10.0"
}
}