package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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.8 <19"
  8. },
  9. "devDependencies": {
  10. "@types/express": "^4.17.21",
  11. "@types/jest": "~29.5",
  12. "@types/node": "~18",
  13. "@types/node-cron": "^3.0.11",
  14. "@typescript-eslint/eslint-plugin": "^7.1.0",
  15. "@typescript-eslint/parser": "~6.2",
  16. "eslint": "~8.46",
  17. "eslint-config-prettier": "~9.0",
  18. "eslint-plugin-jest": "~27.2",
  19. "eslint-plugin-prettier": "^5.1.1",
  20. "jest": "~29.6",
  21. "prettier": "~3.0",
  22. "rimraf": "~5.0",
  23. "ts-api-utils": "~1.0",
  24. "ts-jest": "~29.1",
  25. "tsc-alias": "1.8.8",
  26. "typescript": "~5.1.0",
  27. "typescript-eslint": "^7.1.0"
  28. },
  29. "scripts": {
  30. "prestart": "npm run build",
  31. "start:test": "yarn build && node build/src/test/test.js",
  32. "start": "node build/src/main.js",
  33. "typechain-generate": "yarn typechain --target=ethers-v6 abis/*.json --out-dir src/contract",
  34. "clean": "rimraf coverage build tmp",
  35. "prebuild": "yarn prisma generate",
  36. "build": "tsc -p tsconfig.json && tsc-alias",
  37. "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
  38. "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
  39. "lint": "eslint . --ext .ts --ext .mts",
  40. "test": "jest --coverage",
  41. "prettier": "prettier --config .prettierrc --write .",
  42. "test:watch": "jest --watch"
  43. },
  44. "license": "Apache-2.0",
  45. "dependencies": {
  46. "@prisma/client": "5.10.2",
  47. "@typechain/ethers-v6": "^0.5.1",
  48. "axios": "^1.6.7",
  49. "ethers": "^6.11.1",
  50. "express": "^4.18.3",
  51. "node-cron": "^3.0.3",
  52. "polly-js": "^1.8.3",
  53. "prisma": "^5.10.2",
  54. "tslib": "~2.6.2",
  55. "tslog": "^4.9.2",
  56. "typechain": "^8.3.2"
  57. },
  58. "volta": {
  59. "node": "18.12.1"
  60. }
  61. }