package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "node-typescript-boilerplate",
  3. "version": "0.0.0",
  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. "jest": "~29.6",
  18. "prettier": "~3.0",
  19. "rimraf": "~5.0",
  20. "ts-api-utils": "~1.0",
  21. "ts-jest": "~29.1",
  22. "typescript": "~5.1"
  23. },
  24. "scripts": {
  25. "start": "node build/src/main.js",
  26. "clean": "rimraf coverage build tmp",
  27. "prebuild": "npm run lint",
  28. "build": "tsc -p tsconfig.json",
  29. "build:watch": "tsc -w -p tsconfig.json",
  30. "build:release": "npm run clean && tsc -p tsconfig.release.json",
  31. "lint": "eslint . --ext .ts --ext .mts",
  32. "test": "jest --coverage",
  33. "prettier": "prettier --config .prettierrc --write .",
  34. "test:watch": "jest --watch"
  35. },
  36. "author": "Jakub Synowiec <jsynowiec@users.noreply.github.com>",
  37. "license": "Apache-2.0",
  38. "dependencies": {
  39. "tslib": "~2.6"
  40. },
  41. "volta": {
  42. "node": "18.12.1"
  43. }
  44. }