-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.13 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
{
"name": "xreview",
"version": "0.1.0",
"private": true,
"description": "Evaluación asistida de ofertas públicas con evidencias, fórmulas trazables y decisiones humanas. El módulo de evaluación de xProcureAI.",
"workspaces": [
"apps/web"
],
"scripts": {
"dev": "npm run dev:web",
"dev:web": "npm --workspace apps/web run dev",
"build": "npm --workspace apps/web run build",
"typecheck": "npm --workspace apps/web run typecheck",
"test": "npm run typecheck && npm run test:api",
"test:api": "XREVIEW_FORCE_MEMORY=1 PYTHONPATH=apps/api python3 -m pytest apps/api/tests -q",
"api": "PYTHONPATH=apps/api uvicorn xreview_api.main:app --reload --port ${XREVIEW_API_PORT:-8102}",
"worker": "PYTHONPATH=apps/api python3 -m xreview_api.worker"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0",
"python": ">=3.10"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/techfriendly/xReview.git"
},
"homepage": "https://github.com/techfriendly/xReview#readme",
"bugs": {
"url": "https://github.com/techfriendly/xReview/issues"
}
}