package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "backend",
  3. "version": "1.0.0",
  4. "description": "Express 5 Backend API",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "tsx watch src/index.ts",
  8. "build": "tsc",
  9. "start": "node dist/index.js",
  10. "test:py": "cd tests_python && python -m pytest",
  11. "test:py:report": "cd tests_python && python -m pytest --html=report.html --self-contained-html",
  12. "test:py:all": "cd tests_python && python run_all.py",
  13. "test:py:live": "cd tests_python && python run_live_only.py",
  14. "test:py:section-1-2": "cd tests_python && python run_section_1_2_live.py",
  15. "test:py:section-3": "cd tests_python && python run_section_3_live.py",
  16. "test:py:section-4": "cd tests_python && python run_section_4_live.py",
  17. "test:py:section-5-8": "cd tests_python && python run_section_5_8_live.py",
  18. "test:py:section-9-12": "cd tests_python && python run_section_9_12_live.py",
  19. "test:py:export": "cd tests_python && python export_live_data.py"
  20. },
  21. "dependencies": {
  22. "express": "^5.0.0",
  23. "cors": "^2.8.5",
  24. "dotenv": "^16.4.5",
  25. "swagger-ui-express": "^5.0.1"
  26. },
  27. "devDependencies": {
  28. "@types/express": "^5.0.0",
  29. "@types/cors": "^2.8.17",
  30. "@types/node": "^22.10.0",
  31. "@types/swagger-ui-express": "^4.1.8",
  32. "typescript": "^5.6.0",
  33. "tsx": "^4.19.0"
  34. }
  35. }