package.json 533 B

1234567891011121314151617181920212223
  1. {
  2. "name": "hoppscotch-app",
  3. "version": "2.0.0",
  4. "description": "Open source API development ecosystem",
  5. "author": "Hoppscotch (support@hoppscotch.io)",
  6. "private": true,
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "prepare": "husky install",
  10. "pre-commit": "lint-staged"
  11. },
  12. "lint-staged": {
  13. "*.{ts,js,vue}": "eslint",
  14. "*.{css,scss,vue}": "stylelint"
  15. },
  16. "workspaces": [
  17. "./packages/*"
  18. ],
  19. "dependencies": {
  20. "husky": "^7.0.2",
  21. "lint-staged": "^11.1.2"
  22. }
  23. }