package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. "@babel/cli": "^7.24.5",
  11. "@babel/core": "^7.24.5",
  12. "@babel/preset-env": "^7.24.5",
  13. "@types/jest": "~29.5",
  14. "@types/node": "~18",
  15. "@typescript-eslint/eslint-plugin": "~6.2",
  16. "@typescript-eslint/parser": "~6.2",
  17. "babelify": "^10.0.0",
  18. "browserify": "^17.0.0",
  19. "eslint": "~8.46",
  20. "eslint-config-prettier": "~9.0",
  21. "eslint-plugin-prettier": "^5.1.1",
  22. "prettier": "~3.0",
  23. "rimraf": "~5.0",
  24. "ts-api-utils": "~1.0",
  25. "tsc-alias": "1.8.8",
  26. "typescript": "~5.1.0"
  27. },
  28. "scripts": {
  29. "prestart": "npm run build",
  30. "start": "node build/src/main.js",
  31. "testShawn": "npm run build && node build/src/test.js",
  32. "faucet": "npm run build && node build/src/faucet/faucet.js",
  33. "clean": "rimraf coverage build tmp",
  34. "prebuild": "yarn prisma generate",
  35. "build": "tsc -p tsconfig.json && tsc-alias",
  36. "build:watch": "tsc -w -p tsconfig.json && tsc-alias",
  37. "build:release": "npm run clean && tsc -p tsconfig.release.json && tsc-alias",
  38. "lint": "eslint . --ext .ts --ext .mts",
  39. "prettier": "prettier --config .prettierrc --write .",
  40. "test": "yarn build && node build/src/swapTester.js",
  41. "decode": "yarn build && node build/src/decodeFunction.js"
  42. },
  43. "license": "Apache-2.0",
  44. "dependencies": {
  45. "@initia/initia.js": "^0.1.51",
  46. "@prisma/client": "^5.14.0",
  47. "axios": "^1.6.8",
  48. "dotenv": "^16.4.5",
  49. "https-proxy-agent": "^7.0.4",
  50. "minify": "^11.1.1",
  51. "node-cron": "^3.0.3",
  52. "polly-js": "^1.8.3",
  53. "prisma": "^5.14.0",
  54. "shawnlu96-altcha-lib": "0.3.6",
  55. "tslib": "~2.6.2"
  56. },
  57. "volta": {
  58. "node": "18.12.1"
  59. }
  60. }