package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "node-ts",
  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"
  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-prettier": "^5.1.1",
  17. "prettier": "~3.0",
  18. "rimraf": "~5.0",
  19. "ts-api-utils": "~1.0",
  20. "tsc-alias": "1.8.8",
  21. "typescript": "~5.1.0"
  22. },
  23. "scripts": {
  24. "start": "yarn build && node build/src/main.js",
  25. "clean": "rimraf coverage build tmp",
  26. "build": "tsc -p tsconfig.json && tsc-alias",
  27. "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
  28. "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
  29. "lint": "eslint . --ext .ts --ext .mts",
  30. "prettier": "prettier --config .prettierrc --write ."
  31. },
  32. "license": "Apache-2.0",
  33. "dependencies": {
  34. "tslib": "~2.6.2"
  35. },
  36. "volta": {
  37. "node": "18.12.1"
  38. }
  39. }