-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (69 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (69 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "eduai-enhanced",
"version": "1.0.0",
"description": "🎓 IA Éducative Multilingue & Adaptive - PWA révolutionnaire pour l'éducation mondiale",
"main": "index.js",
"scripts": {
"setup": "pnpm run setup:frontend && pnpm run setup:backend && pnpm run setup:ai",
"setup:frontend": "cd frontend && pnpm install",
"setup:backend": "cd backend && pip install -r requirements.txt",
"setup:ai": "cd ai_services && pip install -r requirements.txt",
"dev": "concurrently \"pnpm run dev:frontend\" \"pnpm run dev:backend\" \"pnpm run dev:ai\"",
"dev:frontend": "cd frontend && pnpm run dev",
"dev:backend": "cd backend && python -m uvicorn main_lite:app --reload --host 0.0.0.0 --port 8000",
"dev:ai": "cd ai_services && python -m uvicorn main_lite:app --reload --host 0.0.0.0 --port 8001",
"build": "pnpm run build:frontend",
"build:frontend": "cd frontend && pnpm run build",
"test": "pnpm run test:frontend && pnpm run test:backend && pnpm run test:ai",
"test:frontend": "cd frontend && pnpm test",
"test:backend": "cd backend && python -m pytest",
"test:ai": "cd ai_services && python -m pytest",
"lint": "pnpm run lint:frontend && pnpm run lint:backend && pnpm run lint:ai",
"lint:frontend": "cd frontend && pnpm run lint",
"lint:backend": "cd backend && flake8 . && black . --check",
"lint:ai": "cd ai_services && flake8 . && black . --check",
"deploy": "pnpm run build && docker-compose up -d",
"deploy:prod": "pnpm run build && ./scripts/deploy-production.sh",
"lighthouse": "cd frontend && pnpm run build && lighthouse http://localhost:3000 --output html --output-path ./lighthouse-report.html",
"pwa-audit": "pnpm run lighthouse && echo 'PWA Audit completed - check lighthouse-report.html'"
},
"keywords": [
"education",
"ai",
"pwa",
"multilingual",
"inclusive",
"adaptive-learning",
"emotion-recognition",
"offline-first",
"speech-recognition",
"hackathon"
],
"author": "DOUTI Lamoussa <docteur@codegeek-pro.me>",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2",
"lighthouse": "^11.4.0"
},
"pnpm": {
"overrides": {
"ws": ">=8.17.1",
"esbuild": ">=0.25.0",
"got": ">=11.8.5",
"cookie": ">=0.5.0"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"python": ">=3.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codeGeekPro/EduAI-Enhanced.git"
},
"bugs": {
"url": "https://github.com/codeGeekPro/EduAI-Enhanced/issues"
},
"homepage": "https://github.com/codeGeekPro/EduAI-Enhanced#readme"
}