| 1234567891011121314151617181920212223242526272829303132333435 |
- {
- "name": "backend",
- "version": "1.0.0",
- "description": "Express 5 Backend API",
- "type": "module",
- "scripts": {
- "dev": "tsx watch src/index.ts",
- "build": "tsc",
- "start": "node dist/index.js",
- "test:py": "cd tests_python && python -m pytest",
- "test:py:report": "cd tests_python && python -m pytest --html=report.html --self-contained-html",
- "test:py:all": "cd tests_python && python run_all.py",
- "test:py:live": "cd tests_python && python run_live_only.py",
- "test:py:section-1-2": "cd tests_python && python run_section_1_2_live.py",
- "test:py:section-3": "cd tests_python && python run_section_3_live.py",
- "test:py:section-4": "cd tests_python && python run_section_4_live.py",
- "test:py:section-5-8": "cd tests_python && python run_section_5_8_live.py",
- "test:py:section-9-12": "cd tests_python && python run_section_9_12_live.py",
- "test:py:export": "cd tests_python && python export_live_data.py"
- },
- "dependencies": {
- "express": "^5.0.0",
- "cors": "^2.8.5",
- "dotenv": "^16.4.5",
- "swagger-ui-express": "^5.0.1"
- },
- "devDependencies": {
- "@types/express": "^5.0.0",
- "@types/cors": "^2.8.17",
- "@types/node": "^22.10.0",
- "@types/swagger-ui-express": "^4.1.8",
- "typescript": "^5.6.0",
- "tsx": "^4.19.0"
- }
- }
|