SPB Git forge

spb/immbot-ai

Public
1commits 1branches 0releases
1.5 MBsize
maindefault branch
19 days agolast push
TypeScript 98.3% CSS 0.9% Shell 0.7%
1.5 KB · 55 lines json
Raw Blame History
1{2  "name": "immbot-ai",3  "version": "1.0.0",4  "private": true,5  "type": "module",6  "description": "Immbot AI — plateforme d'apprentissage intelligente pour IMM1003-20 et IMM1033-20 (UQO)",7  "scripts": {8    "dev": "next dev -p 3070",9    "build": "next build",10    "start": "next start -p 3070",11    "lint": "next lint",12    "seed": "node --env-file=.env scripts/seed.ts",13    "ingest": "node --env-file=.env scripts/ingest-courses.ts",14    "reindex": "node --env-file=.env scripts/ingest-courses.ts --force",15    "evaluate": "node --env-file=.env scripts/evaluate-rag.ts",16    "test": "vitest run",17    "verify": "vitest run && node --env-file=.env scripts/evaluate-rag.ts --offline"18  },19  "dependencies": {20    "@huggingface/transformers": "^3.5.0",21    "bcryptjs": "^3.0.2",22    "katex": "^0.16.21",23    "lucide-react": "^0.525.0",24    "mammoth": "^1.9.0",25    "next": "^15.4.5",26    "react": "^19.1.0",27    "react-dom": "^19.1.0",28    "react-markdown": "^10.1.0",29    "rehype-katex": "^7.0.1",30    "remark-gfm": "^4.0.1",31    "remark-math": "^6.0.0",32    "unpdf": "^0.12.1",33    "xlsx": "^0.18.5",34    "zod": "^3.25.0"35  },36  "devDependencies": {37    "@tailwindcss/postcss": "^4.1.0",38    "@types/bcryptjs": "^2.4.6",39    "@types/node": "^22",40    "@types/react": "^19",41    "@types/react-dom": "^19",42    "tailwindcss": "^4.1.0",43    "typescript": "^5.8.0",44    "vitest": "^3.2.0"45  },46  "pnpm": {47    "onlyBuiltDependencies": [48      "canvas",49      "esbuild",50      "onnxruntime-node",51      "protobufjs",52      "sharp"53    ]54  }55}