package.json 559 B

1234567891011121314151617181920212223
  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. "cargo-checks": "devops/git-hooks/pre-commit && devops/git-hooks/pre-push",
  9. "cargo-build": "scripts/cargo-build.sh"
  10. },
  11. "workspaces": [
  12. "tests/network-tests"
  13. ],
  14. "devDependencies": {
  15. "husky": "^4.2.5"
  16. },
  17. "husky": {
  18. "hooks": {
  19. "pre-commit": "devops/git-hooks/pre-commit",
  20. "pre-push": "devops/git-hooks/pre-push"
  21. }
  22. }
  23. }