package.json 535 B

123456789101112131415161718192021222324252627282930
  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. "node-fetch": "^3.1.0"
  18. },
  19. "devDependencies": {
  20. "nodemon": "^2.0.15"
  21. },
  22. "nodemonConfig": {
  23. "ext": "js",
  24. "ignore": [
  25. "*.test.ts",
  26. "db/*"
  27. ],
  28. "delay": 2
  29. }
  30. }