mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 11:41:08 +02:00
Migrate figgos from single Expo app to multi-app monorepo structure: - Move mobile app to apps/mobile/ - Add apps/web/ (SvelteKit) and apps/backend/ (NestJS) scaffolds - Add packages/shared/ for shared types and constants - Update root package.json with new dev commands - Temporarily skip type-check (run pnpm install first) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
138 lines
2.5 KiB
JSON
138 lines
2.5 KiB
JSON
{
|
|
"subscriptions": [
|
|
{
|
|
"id": "free",
|
|
"name": "Kostenlos",
|
|
"price": 0,
|
|
"priceUnit": "",
|
|
"initialMana": 200,
|
|
"dailyMana": 10,
|
|
"maxMana": 300,
|
|
"canGiftMana": false,
|
|
"popular": false,
|
|
"billingCycle": "monthly"
|
|
},
|
|
{
|
|
"id": "Mini",
|
|
"name": "Basic",
|
|
"price": 5.99,
|
|
"priceUnit": "/ Monat",
|
|
"initialMana": 800,
|
|
"dailyMana": 20,
|
|
"maxMana": 1000,
|
|
"canGiftMana": true,
|
|
"popular": true,
|
|
"billingCycle": "monthly"
|
|
},
|
|
{
|
|
"id": "Plus",
|
|
"name": "Premium",
|
|
"price": 14.99,
|
|
"priceUnit": "/ Monat",
|
|
"initialMana": 2500,
|
|
"dailyMana": 50,
|
|
"maxMana": 4500,
|
|
"canGiftMana": true,
|
|
"popular": false,
|
|
"billingCycle": "monthly"
|
|
},
|
|
{
|
|
"id": "Pro",
|
|
"name": "Unlimited",
|
|
"price": 29.99,
|
|
"priceUnit": "/ Monat",
|
|
"initialMana": 5000,
|
|
"dailyMana": 100,
|
|
"maxMana": 10000,
|
|
"canGiftMana": true,
|
|
"popular": false,
|
|
"billingCycle": "monthly"
|
|
},
|
|
{
|
|
"id": "Mini-yearly",
|
|
"name": "Basic",
|
|
"price": 59.99,
|
|
"priceUnit": "/ Jahr",
|
|
"initialMana": 1000,
|
|
"dailyMana": 25,
|
|
"maxMana": 1200,
|
|
"canGiftMana": true,
|
|
"popular": true,
|
|
"billingCycle": "yearly",
|
|
"monthlyEquivalent": 5.0
|
|
},
|
|
{
|
|
"id": "Plus-yearly",
|
|
"name": "Premium",
|
|
"price": 149.99,
|
|
"priceUnit": "/ Jahr",
|
|
"initialMana": 3000,
|
|
"dailyMana": 60,
|
|
"maxMana": 5000,
|
|
"canGiftMana": true,
|
|
"popular": false,
|
|
"billingCycle": "yearly",
|
|
"monthlyEquivalent": 12.5
|
|
},
|
|
{
|
|
"id": "Pro-yearly",
|
|
"name": "Unlimited",
|
|
"price": 299.99,
|
|
"priceUnit": "/ Jahr",
|
|
"initialMana": 6000,
|
|
"dailyMana": 120,
|
|
"maxMana": 12000,
|
|
"canGiftMana": true,
|
|
"popular": false,
|
|
"billingCycle": "yearly",
|
|
"monthlyEquivalent": 25.0
|
|
}
|
|
],
|
|
"packages": [
|
|
{
|
|
"id": "small",
|
|
"name": "100 Mana",
|
|
"manaAmount": 100,
|
|
"price": 4.99,
|
|
"popular": false
|
|
},
|
|
{
|
|
"id": "medium",
|
|
"name": "500 Mana",
|
|
"manaAmount": 500,
|
|
"price": 19.99,
|
|
"popular": true
|
|
},
|
|
{
|
|
"id": "large",
|
|
"name": "1000 Mana",
|
|
"manaAmount": 1000,
|
|
"price": 29.99,
|
|
"popular": false
|
|
},
|
|
{
|
|
"id": "team-small",
|
|
"name": "2000 Mana",
|
|
"manaAmount": 2000,
|
|
"price": 49.99,
|
|
"isTeamPackage": true,
|
|
"popular": false
|
|
},
|
|
{
|
|
"id": "team-medium",
|
|
"name": "5000 Mana",
|
|
"manaAmount": 5000,
|
|
"price": 79.99,
|
|
"isTeamPackage": true,
|
|
"popular": false
|
|
},
|
|
{
|
|
"id": "team-large",
|
|
"name": "10000 Mana",
|
|
"manaAmount": 10000,
|
|
"price": 99.99,
|
|
"isTeamPackage": true,
|
|
"popular": false
|
|
}
|
|
]
|
|
}
|