package.json 915 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "chain4all",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "build/app.js",
  6. "scripts": {
  7. "dev": "nodemon app.ts",
  8. "start": "node build/app.js",
  9. "build": "tsc --project ./"
  10. },
  11. "author": "Daniel Kunický",
  12. "license": "ISC",
  13. "dependencies": {
  14. "body-parser": "^1.19.1",
  15. "cors": "^2.8.5",
  16. "dotenv": "^14.2.0",
  17. "express": "^4.17.2",
  18. "express-basic-auth": "^1.2.1",
  19. "grpc": "^1.24.11",
  20. "iroha-helpers": "^1.3.0"
  21. },
  22. "devDependencies": {
  23. "@tsconfig/node10": "^1.0.8",
  24. "@types/body-parser": "^1.19.2",
  25. "@types/cors": "^2.8.12",
  26. "@types/express": "^4.17.13",
  27. "@types/node": "^17.0.16",
  28. "nodemon": "^2.0.15",
  29. "ts-node": "^10.5.0",
  30. "typescript": "^4.5.5"
  31. },
  32. "nodemonConfig": {
  33. "ext": "ts",
  34. "execMap": {
  35. "ts": "npx ts-node"
  36. },
  37. "ignore": [
  38. "*.test.ts",
  39. "db/*"
  40. ],
  41. "delay": 2
  42. }
  43. }