package.json 908 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "root",
  3. "version": "1.0.0",
  4. "private": true,
  5. "devDependencies": {
  6. "@changesets/changelog-github": "^0.4.6",
  7. "@changesets/cli": "^2.24.4",
  8. "turbo": "^1.4.6"
  9. },
  10. "scripts": {
  11. "bootstrap": "yarn install",
  12. "build": "turbo run build",
  13. "start": "turbo run start",
  14. "format": "prettier --write packages/** example/**",
  15. "format:check": "prettier --check packages/** example/**",
  16. "lint": "turbo run lint",
  17. "test": "turbo run test",
  18. "test:build": "turbo run build",
  19. "test:lint": "turbo run test:lint",
  20. "test:unit": "turbo run test:unit",
  21. "test:watch": "turbo run test:watch",
  22. "predeploy:example": "turbo run build --filter=livekit-react-example...",
  23. "deploy:example": "cd example && yarn deploy",
  24. "release": "turbo run build --filter=./packages/* && changeset publish"
  25. },
  26. "workspaces": [
  27. "packages/*",
  28. "example"
  29. ]
  30. }