mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 09:21:09 +02:00
Projects included: - maerchenzauber (NestJS backend + Expo mobile + SvelteKit web + Astro landing) - manacore (Expo mobile + SvelteKit web + Astro landing) - manadeck (NestJS backend + Expo mobile + SvelteKit web) - memoro (Expo mobile + SvelteKit web + Astro landing) This commit preserves the current state before monorepo restructuring. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
42 lines
1,015 B
JSON
42 lines
1,015 B
JSON
{
|
|
"name": "memoro-admin-api",
|
|
"version": "1.0.0",
|
|
"description": "Admin API service for Memoro - handles AI image generation and persona management",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src --ext .ts",
|
|
"type-check": "tsc --noEmit"
|
|
},
|
|
"keywords": [
|
|
"fastify",
|
|
"typescript",
|
|
"replicate",
|
|
"ai",
|
|
"image-generation"
|
|
],
|
|
"author": "Memoro Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@fastify/cors": "^10.0.1",
|
|
"@fastify/helmet": "^12.0.1",
|
|
"@fastify/rate-limit": "^10.0.1",
|
|
"fastify": "^5.1.0",
|
|
"replicate": "^0.34.1",
|
|
"zod": "^3.23.8",
|
|
"dotenv": "^16.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.17.0",
|
|
"@typescript-eslint/parser": "^8.17.0",
|
|
"eslint": "^9.17.0",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|