first commit - skeletal frame

This commit is contained in:
root
2026-01-31 04:07:32 +00:00
parent 7d12f5fddf
commit a582e1f272
32 changed files with 2043 additions and 0 deletions

17
backend/package.json Normal file
View File

@@ -0,0 +1,17 @@
{
"name": "barkwho-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"express": "^4.18.2",
"axios": "^1.6.7",
"node-cron": "^3.0.3",
"cors": "^2.8.5",
"uuid": "^9.0.0"
}
}