* feature(dashboard): add polar / subscription * wip(payments): manage subscription * wip(payments): add free product, faq and some other improvements * fix(root): change node to bundler in tsconfig * wip(payments): display current subscription * feat(dashboard): schedule project for deletion * wip(payments): support custom products/subscriptions * wip(payments): fix polar scripts * wip(payments): add json package to dockerfiles
19 lines
495 B
TypeScript
19 lines
495 B
TypeScript
export type IPrice = {
|
|
price: number;
|
|
events: number;
|
|
};
|
|
|
|
export const PRICING: IPrice[] = [
|
|
{ price: 0, events: 5_000 },
|
|
{ price: 5, events: 10_000 },
|
|
{ price: 20, events: 100_000 },
|
|
{ price: 30, events: 250_000 },
|
|
{ price: 50, events: 500_000 },
|
|
{ price: 90, events: 1_000_000 },
|
|
{ price: 180, events: 2_500_000 },
|
|
{ price: 250, events: 5_000_000 },
|
|
{ price: 400, events: 10_000_000 },
|
|
// { price: 650, events: 20_000_000 },
|
|
// { price: 900, events: 30_000_000 },
|
|
];
|