package.json 480 B

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