new selfhosted version

This commit is contained in:
antonio
2025-11-28 14:11:51 +01:00
parent afda29997d
commit 951860f67e
1046 changed files with 72586 additions and 574750 deletions

31
payments/package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "payments",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev:prod": "ts-node ../scripts/payments/run_local.ts --production",
"dev:test": "ts-node ../scripts/payments/run_local.ts --testmode",
"shared": "ts-node ../scripts/payments/shared.ts",
"deploy": "ts-node ../scripts/payments/deploy.ts",
"build": "pnpm run shared && tsc"
},
"keywords": [],
"author": "Emily",
"license": "Apache-2.0",
"dependencies": {
"@trpc/client": "^11.4.3",
"@trpc/server": "11.2.0",
"cors": "^2.8.5",
"cron": "^4.3.1",
"express": "^5.1.0",
"mongoose": "^8.15.0",
"stripe": "^18.2.1",
"zod": "3.24.2"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^5.0.2",
"@types/node": "^22.15.19"
}
}