package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. "testShawn": "npm run build && node build/src/test.js",
  27. "faucet": "npm run build && node build/src/faucet/faucet.js",
  28. "clean": "rimraf coverage build tmp",
  29. "prebuild": "yarn prisma generate",
  30. "build": "tsc -p tsconfig.json && tsc-alias",
  31. "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
  32. "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
  33. "lint": "eslint . --ext .ts --ext .mts",
  34. "prettier": "prettier --config .prettierrc --write .",
  35. "test": "yarn build && node build/src/swapTester.js",
  36. "decode": "yarn build && node build/src/decodeFunction.js"
  37. },
  38. "license": "Apache-2.0",
  39. "dependencies": {
  40. "@initia/initia.js": "^0.1.51",
  41. "@prisma/client": "^5.14.0",
  42. "shawnlu96-altcha-lib": "0.3.4",
  43. "axios": "^1.6.8",
  44. "dotenv": "^16.4.5",
  45. "https-proxy-agent": "^7.0.4",
  46. "node-cron": "^3.0.3",
  47. "polly-js": "^1.8.3",
  48. "prisma": "^5.14.0",
  49. "tslib": "~2.6.2"
  50. },
  51. "volta": {
  52. "node": "18.12.1"
  53. }
  54. }