initial commit

This commit is contained in:
Scott Hatlen
2025-11-05 09:06:54 -08:00
commit e3941089e1
27 changed files with 31423 additions and 0 deletions

16
backend/package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "pb-backend",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"seed": "node seed.js"
},
"dependencies": {
"express": "^5.1.0",
"cors": "^2.8.5",
"sqlite3": "^5.1.7",
"node-fetch": "^3.3.2"
}
}