| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "ts-monorepo",
- "description": "Template for setting up a TypeScript monorepo",
- "private": true,
- "workspaces": [
- "packages/*",
- "examples/*"
- ],
- "scripts": {
- "docs": "doctoc --title '**Table of content**' README.md",
- "clean": "pnpm run -r clean",
- "build": "pnpm run -r build",
- "test": "pnpm run -r test",
- "lint": "eslint --fix --ext js,ts,tsx ."
- },
- "devDependencies": {
- "@typescript-eslint/eslint-plugin": "^5.30.6",
- "@typescript-eslint/parser": "^5.30.6",
- "doctoc": "~2.2.0",
- "eslint": "~8.19.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-plugin-import": "~2.26.0",
- "eslint-plugin-prettier": "^4.2.1",
- "prettier": "^2.7.1",
- "typescript": "~4.7.4"
- },
- "pnpm": {
- "peerDependencyRules": {
- "allowedVersions": {
- "react-scripts": "^5.0.0"
- }
- }
- }
- }
|