package.json 672 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "rural-attractivness-service",
  3. "version": "1.0.0",
  4. "description": "Web service for Rural Attractiveness app",
  5. "main": "index.js",
  6. "scripts": {
  7. "build": "babel index.js -d dist",
  8. "start": "nodemon index.js"
  9. },
  10. "author": "František Zadražil",
  11. "contributors": ["Jan Macura", "Viktorie Sloupová"],
  12. "license": "ISC",
  13. "dependencies": {
  14. "cors": "^2.8.5",
  15. "csv-parse": "^4.8.5",
  16. "csv-stringify": "^5.5.1",
  17. "express": "^4.17.1",
  18. "lodash.where": "^3.1.0",
  19. "pug": "^3.0.0",
  20. "r-script": "0.0.4"
  21. },
  22. "devDependencies": {
  23. "babel-cli": "^6.26.0",
  24. "babel-preset-env": "^1.7.0",
  25. "nodemon": "^2.0.2"
  26. }
  27. }