package.json 707 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "ts-monorepo",
  3. "description": "Template for setting up a TypeScript monorepo",
  4. "private": true,
  5. "workspaces": [
  6. "packages/*",
  7. "examples/*"
  8. ],
  9. "scripts": {
  10. "docs": "doctoc --title '**Table of content**' README.md",
  11. "clean": "pnpm run -r clean",
  12. "build": "pnpm run -r build",
  13. "test": "pnpm run -r test",
  14. "lint": "eslint --fix --ext js,ts,tsx ."
  15. },
  16. "devDependencies": {
  17. "@typescript-eslint/parser": "^5.30.6",
  18. "doctoc": "~2.2.0",
  19. "eslint": "~8.19.0",
  20. "eslint-plugin-import": "~2.26.0",
  21. "typescript": "~4.7.4"
  22. },
  23. "pnpm": {
  24. "peerDependencyRules": {
  25. "allowedVersions": {
  26. "react-scripts": "^5.0.0"
  27. }
  28. }
  29. }
  30. }