package.json 864 B

12345678910111213141516171819202122232425262728293031323334
  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/eslint-plugin": "^5.30.6",
  18. "@typescript-eslint/parser": "^5.30.6",
  19. "doctoc": "~2.2.0",
  20. "eslint": "~8.19.0",
  21. "eslint-config-prettier": "^8.5.0",
  22. "eslint-plugin-import": "~2.26.0",
  23. "eslint-plugin-prettier": "^4.2.1",
  24. "prettier": "^2.7.1",
  25. "typescript": "~4.7.4"
  26. },
  27. "pnpm": {
  28. "peerDependencyRules": {
  29. "allowedVersions": {
  30. "react-scripts": "^5.0.0"
  31. }
  32. }
  33. }
  34. }