monorepo/package.json

37 lines
839 B
JSON
Raw Normal View History

2024-06-25 21:59:50 +08:00
{
"name": "monoapp",
"private": true,
"scripts": {
2025-05-03 09:09:01 +08:00
"boundaries": "turbo boundaries",
2024-06-25 21:59:50 +08:00
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"gen": "turbo gen workspace",
2025-04-19 12:46:08 +08:00
"web2:dev": "turbo dev --filter=web2",
2025-06-06 21:29:06 +08:00
"web2:build": "turbo build --filter=web2",
"talk:dev": "turbo start:dev --filter=talk"
2024-06-25 21:59:50 +08:00
},
"devDependencies": {
2025-03-31 19:43:56 +08:00
"@repo/typescript-config": "workspace:*",
2025-05-03 09:09:01 +08:00
"eslint": "9.25.0",
"turbo": "^2.5.2",
"typescript": "^5.7.2"
2024-06-25 21:59:50 +08:00
},
2025-03-31 19:43:56 +08:00
"packageManager": "pnpm@10.6.5",
2024-06-25 21:59:50 +08:00
"engines": {
"node": ">=18"
},
"pnpm": {
"updateConfig": {
2025-01-24 14:26:30 +08:00
"ignoreDependencies": []
2024-06-25 21:59:50 +08:00
},
"peerDependencyRules": {
"allowAny": [
"@typescript-eslint/eslint-plugin",
"reflect-metadata"
]
}
}
}