package.json 389 B

1234567891011121314151617181920
  1. {
  2. "name": "test-project",
  3. "version": "1.0.0",
  4. "description": "Test fixture for skill tests",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "node index.js",
  8. "test": "jest",
  9. "build": "tsc",
  10. "lint": "eslint ."
  11. },
  12. "dependencies": {
  13. "express": "^4.18.0",
  14. "lodash": "^4.17.21"
  15. },
  16. "devDependencies": {
  17. "jest": "^29.0.0",
  18. "typescript": "^5.0.0"
  19. }
  20. }