mirror of
https://github.com/vercel/turborepo.git
synced 2025-12-23 09:19:46 +00:00
### Description Reverting https://github.com/vercel/turborepo/pull/10384. It didn't even make it through a morning without being flaky and blocking us. ### Testing Instructions CI
48 lines
1.4 KiB
JSON
48 lines
1.4 KiB
JSON
{
|
|
"name": "turbo-monorepo",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "pnpm -- turbo run build",
|
|
"build:turbo": "pnpm run --filter=cli build",
|
|
"build:ts": "tsc -b tsconfig.project.json",
|
|
"lint:prettier": "turbo run lint:prettier",
|
|
"check:toml": "taplo format --check",
|
|
"docs:dev": "turbo run dev --filter=turborepo-docs",
|
|
"turbo": "pnpm run build:turbo && node turbow.js",
|
|
"turbo-prebuilt": "node turbow.js",
|
|
"prepare": "husky install",
|
|
"test": "turbo run test",
|
|
"test:integration": "pnpm --filter turborepo-tests-integration exec prysk",
|
|
"rustdoc": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going || true",
|
|
"rustdoc:open": "RUSTDOCFLAGS=\"-Z unstable-options --enable-index-page\" cargo doc --workspace --no-deps --keep-going --open"
|
|
},
|
|
"devDependencies": {
|
|
"@taplo/cli": "^0.5.2",
|
|
"@types/node": "^22.15.1",
|
|
"eslint": "^8.55.0",
|
|
"husky": "^8.0.0",
|
|
"lint-staged": "^13.1.0",
|
|
"prettier": "^2.8.7",
|
|
"semver": "^7.3.8",
|
|
"typescript": "5.5.4"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,ts,tsx}": [
|
|
"prettier --write"
|
|
],
|
|
"*.{md,mdx,mjs,yml,yaml,css}": [
|
|
"prettier --write"
|
|
],
|
|
"*.toml": [
|
|
"taplo format"
|
|
],
|
|
"*.rs": [
|
|
"cargo fmt --"
|
|
]
|
|
},
|
|
"packageManager": "pnpm@8.14.0",
|
|
"engines": {
|
|
"node": "22.x"
|
|
}
|
|
}
|