first commit

This commit is contained in:
inubimambo
2025-06-05 10:12:52 +08:00
parent f5a7111f8e
commit 8060dbb140
8 changed files with 2212 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "educat-ai-study-buddy",
"version": "1.0.0",
"description": "EduCat: AI Study Buddy - Node.js backend with Flowise integration",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"multer": "^2.0.1"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}