package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. "prestart": "npm run build",
  25. "start": "node build/src/main.js",
  26. "clean": "rimraf coverage build tmp",
  27. "build": "tsc -p tsconfig.json && tsc-alias",
  28. "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
  29. "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
  30. "lint": "eslint . --ext .ts --ext .mts",
  31. "prettier": "prettier --config .prettierrc --write ."
  32. },
  33. "license": "Apache-2.0",
  34. "dependencies": {
  35. "tslib": "~2.6.2"
  36. },
  37. "volta": {
  38. "node": "18.12.1"
  39. }
  40. }