feat: initialize multi-platform Family Organizer application with Flutter frontend and Node.js backend services

This commit is contained in:
Van Leemput Dayron
2025-12-08 21:29:57 +01:00
parent d262cc4987
commit 378d6fb5d5
158 changed files with 9396 additions and 0 deletions

36
backend/package.json Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "backend",
"version": "1.0.0",
"description": "Family Organizer Backend API",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.2.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}