package.json 472 B

12345678910111213141516171819202122232425
  1. {
  2. "private": true,
  3. "name": "joystream",
  4. "license": "GPL-3.0-only",
  5. "scripts": {
  6. "test": "yarn && yarn workspaces run test",
  7. "test-migration": "yarn && yarn workspaces run test-migration"
  8. },
  9. "workspaces": [
  10. "tests/network-tests",
  11. "cli",
  12. "types",
  13. "pioneer",
  14. "pioneer/packages/*"
  15. ],
  16. "devDependencies": {
  17. "husky": "^4.2.5"
  18. },
  19. "husky": {
  20. "hooks": {
  21. "pre-commit": "devops/git-hooks/pre-commit",
  22. "pre-push": "devops/git-hooks/pre-push"
  23. }
  24. }
  25. }