package.json 775 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "description": "Exercism exercises in Typescript.",
  3. "private": true,
  4. "repository": {
  5. "type": "git",
  6. "url": "https://github.com/exercism/typescript"
  7. },
  8. "type": "module",
  9. "engines": {
  10. "node": "^18.16.0 || >=20.0.0"
  11. },
  12. "devDependencies": {
  13. "@exercism/babel-preset-typescript": "^0.4.0",
  14. "@exercism/eslint-config-typescript": "^0.6.0",
  15. "@types/jest": "^29.5.12",
  16. "@types/node": "^20.11.24",
  17. "babel-jest": "^29.7.0",
  18. "core-js": "^3.36.0",
  19. "eslint": "^8.57.0",
  20. "jest": "^29.7.0",
  21. "typescript": "^5.3.3"
  22. },
  23. "scripts": {
  24. "test": "yarn lint:types && jest --no-cache",
  25. "lint": "yarn lint:types && yarn lint:ci",
  26. "lint:types": "yarn tsc --noEmit -p */.",
  27. "lint:ci": "eslint */. --ext .tsx,.ts"
  28. }
  29. }