feat: implement backend API with models and seed data for OctoFit application

This commit is contained in:
2026-06-20 01:49:15 +00:00
parent 39ef098873
commit f8c4a57e78
17 changed files with 669 additions and 5 deletions
+3 -1
View File
@@ -6,7 +6,8 @@
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
"start": "node dist/index.js",
"seed": "ts-node src/scripts/seed.ts"
},
"dependencies": {
"express": "^5.2.1",
@@ -15,6 +16,7 @@
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^26.0.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^6.0.3"
}