Complete Email Sortierer implementation with Appwrite and Stripe integration

This commit is contained in:
2026-01-14 20:02:16 +01:00
commit 95349af50b
3355 changed files with 644802 additions and 0 deletions

25
server/package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"type": "module",
"scripts": {
"start": "node index.mjs",
"bootstrap": "node bootstrap-appwrite.mjs",
"test": "node e2e-test.mjs",
"verify": "node verify-setup.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.2.3",
"express": "^4.18.2",
"node-appwrite": "^21.1.0",
"stripe": "^14.10.0"
},
"devDependencies": {
"jsdom": "^27.4.0"
}
}