package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "eba-vademecum",
  3. "version": "1.0.0",
  4. "description": "Auto-generated pdf based on a HTML file and ReactJS",
  5. "main": "babel.config.js",
  6. "directories": {
  7. "lib": "lib"
  8. },
  9. "dependencies": {
  10. "@babel/polyfill": "^7.4.4",
  11. "@babel/preset-react": "^7.0.0",
  12. "puppeteer": "^1.15.0",
  13. "puppeteer-core": "^1.15.0"
  14. },
  15. "devDependencies": {
  16. "@babel/cli": "^7.4.4",
  17. "@babel/core": "^7.4.4",
  18. "@babel/preset-env": "^7.4.4",
  19. "@babel/preset-es2015": "^7.0.0-beta.53"
  20. },
  21. "scripts": {
  22. "prof-start": "./node_modules/.bin/babel js/vademecum.js --watch --out-file lib/vademecum.js",
  23. "prof-build": "./node_modules/.bin/babel js/vademecum.js --out-dir lib",
  24. "prof-pdf": "npm run prof-build && node pdf-maker.js",
  25. "dom-start": "./node_modules/.bin/babel js/vademecum-domiciliario.js --watch --out-file lib/vademecum-domiciliario.js",
  26. "dom-build": "./node_modules/.bin/babel js/vademecum-domiciliario.js --out-dir lib",
  27. "dom-pdf": "npm run dom-build && node pdf-domiciliario.js"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "ssh://git@gogs.labs/tati/eba-vademecum.git"
  32. },
  33. "author": "Tatiana Inama",
  34. "license": "ISC"
  35. }