package.json 510 B

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