package.json 995 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "pupper.js",
  3. "version": "1.0.0",
  4. "description": "A reactive template engine based in Pug and Alpine.js",
  5. "author": "Matheus Giovani <matheus@ad3com.com.br>",
  6. "license": "AGPL-3.0",
  7. "private": true,
  8. "packageManager": "yarn@1.22.10",
  9. "workspaces": [
  10. "./packages/compiler",
  11. "./packages/renderer",
  12. "./packages/webpack-loader"
  13. ],
  14. "scripts": {
  15. "build": "cross-env NODE_ENV=production npm-run-all -s build:*",
  16. "build:compiler": "cd packages/compiler && yarn build",
  17. "build:renderer": "cd packages/renderer && yarn build",
  18. "watch": "npm-run-all -p watch:*",
  19. "watch:compiler": "cd packages/compiler && yarn watch",
  20. "watch:renderer": "cd packages/renderer && yarn watch",
  21. "watch:test": "nodemon"
  22. },
  23. "dependencies": {},
  24. "devDependencies": {
  25. "cross-env": "^7.0.3",
  26. "source-map-loader": "^3.0.0",
  27. "source-map-support": "^0.5.21",
  28. "webpack": "^5.51.1",
  29. "webpack-cli": "^4.8.0",
  30. "yarn-run-all": "^3.1.1"
  31. }
  32. }