package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "validator",
  3. "version": "1.0.0",
  4. "description": "Validator",
  5. "main": "lib/app.js",
  6. "scripts": {
  7. "start": "node lib/app.js",
  8. "dev": "tsc && node lib/app.js",
  9. "postinstall": "tsc",
  10. "watch-node": "nodemon lib/app.js",
  11. "watch-ts": "tsc -w",
  12. "deploy": "git add . && git commit -m Heroku && git push heroku master -f"
  13. },
  14. "author": "Oleksandr Korniienko",
  15. "license": "MIT",
  16. "engines": {
  17. "node": "15.14.0"
  18. },
  19. "dependencies": {
  20. "@joystream/types": "^0.16.1",
  21. "@polkadot/api": "4.2.1",
  22. "@polkadot/keyring": "^6.0.5",
  23. "@polkadot/types": "4.2.1",
  24. "@polkadot/util": "^6.0.5",
  25. "@polkadot/util-crypto": "^6.0.5",
  26. "@types/bn.js": "^4.11.6",
  27. "@types/locks": "^0.2.1",
  28. "bn.js": "^5.1.2",
  29. "cors": "^2.8.5",
  30. "cross-fetch": "^3.0.6",
  31. "dotenv": "^8.2.0",
  32. "express": "^4.17.1",
  33. "inquirer": "^7.3.3",
  34. "locks": "^0.2.2",
  35. "lowdb": "^1.0.0",
  36. "moment": "^2.27.0",
  37. "pm2": "^4.4.0",
  38. "ws": "^7.2.5"
  39. },
  40. "devDependencies": {
  41. "@polkadot/ts": "^0.3.62",
  42. "@types/cors": "^2.8.6",
  43. "@types/express": "^4.17.6",
  44. "@types/inquirer": "^7.3.1",
  45. "@types/lowdb": "^1.0.9",
  46. "@types/ws": "^7.4.6",
  47. "nodemon": "^2.0.3",
  48. "ts-node": "^8.10.1",
  49. "typescript": "^3.9.7"
  50. }
  51. }