package.json 598 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "chain4all",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "app.js",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "nodemon app.js",
  9. "start": "node app.js"
  10. },
  11. "author": "Daniel Kunický",
  12. "license": "ISC",
  13. "dependencies": {
  14. "body-parser": "^1.19.1",
  15. "dotenv": "^14.2.0",
  16. "express": "^4.17.2",
  17. "express-basic-auth": "^1.2.1",
  18. "grpc": "^1.24.11",
  19. "iroha-helpers": "^1.3.0"
  20. },
  21. "devDependencies": {
  22. "nodemon": "^2.0.15"
  23. },
  24. "nodemonConfig": {
  25. "ext": "js",
  26. "ignore": [
  27. "*.test.ts",
  28. "db/*"
  29. ],
  30. "delay": 2
  31. }
  32. }