package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "node-typescript-boilerplate",
  3. "version": "0.0.1",
  4. "description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
  5. "type": "module",
  6. "engines": {
  7. "node": ">= 18.12 <19"
  8. },
  9. "devDependencies": {
  10. "@types/jest": "~29.5",
  11. "@types/node": "~18",
  12. "@typescript-eslint/eslint-plugin": "~6.2",
  13. "@typescript-eslint/parser": "~6.2",
  14. "eslint": "~8.46",
  15. "eslint-config-prettier": "~9.0",
  16. "eslint-plugin-jest": "~27.2",
  17. "eslint-plugin-prettier": "^5.1.1",
  18. "jest": "~29.6",
  19. "prettier": "~3.0",
  20. "rimraf": "~5.0",
  21. "ts-api-utils": "~1.0",
  22. "ts-jest": "~29.1",
  23. "typescript": "~5.3"
  24. },
  25. "scripts": {
  26. "prestart": "npm run build",
  27. "start": "node build/src/main.js",
  28. "clean": "rimraf coverage build tmp",
  29. "prebuild": "npm run lint",
  30. "build": "tsc -p tsconfig.json",
  31. "build:watch": "tsc -w -p tsconfig.json",
  32. "build:release": "npm run clean && tsc -p tsconfig.release.json",
  33. "lint": "eslint . --ext .ts --ext .mts",
  34. "test": "jest --coverage",
  35. "prettier": "prettier --config .prettierrc --write .",
  36. "test:watch": "jest --watch"
  37. },
  38. "license": "Apache-2.0",
  39. "dependencies": {
  40. "tslib": "~2.6"
  41. },
  42. "volta": {
  43. "node": "18.12.1"
  44. }
  45. }