|
23 | 23 | "url": "https://github.com/typescript-eslint/typescript-eslint/issues"
|
24 | 24 | },
|
25 | 25 | "scripts": {
|
26 |
| - "build": "nx run-many --target=build --parallel --exclude website --exclude website-eslint", |
| 26 | + "build": "npx nx run-many --target=build --parallel --exclude website --exclude website-eslint", |
27 | 27 | "check-clean-workspace-after-install": "git diff --quiet --exit-code",
|
28 |
| - "check-configs": "nx run-many --target=check-configs --parallel", |
29 |
| - "check-docs": "nx run-many --target=check-docs --parallel", |
| 28 | + "check-configs": "npx nx run-many --target=check-configs --parallel", |
| 29 | + "check-docs": "npx nx run-many --target=check-docs --parallel", |
30 | 30 | "check-format": "prettier --check .",
|
31 | 31 | "check-spelling": "cspell --config=.cspell.json \"**/*.{md,mdx,ts,mts,cts,js,cjs,mjs,tsx,jsx}\" --no-progress --show-context --show-suggestions",
|
32 | 32 | "clean": "lerna clean -y && nx run-many --target=clean",
|
33 | 33 | "format": "prettier --write .",
|
34 |
| - "generate-breaking-changes": "nx run eslint-plugin:generate-breaking-changes", |
35 |
| - "generate-configs": "nx run eslint-plugin:generate:configs", |
36 |
| - "generate-contributors": "nx run repo-tools:generate-contributors", |
37 |
| - "generate-sponsors": "nx run repo-tools:generate-sponsors", |
38 |
| - "generate-website-dts": "nx run website:generate-website-dts", |
39 |
| - "generate-lib": "nx run repo-tools:generate-lib", |
| 34 | + "generate-breaking-changes": "npx nx run eslint-plugin:generate-breaking-changes", |
| 35 | + "generate-configs": "npx nx run eslint-plugin:generate:configs", |
| 36 | + "generate-contributors": "npx nx run repo-tools:generate-contributors", |
| 37 | + "generate-sponsors": "npx nx run repo-tools:generate-sponsors", |
| 38 | + "generate-website-dts": "npx nx run website:generate-website-dts", |
| 39 | + "generate-lib": "npx nx run repo-tools:generate-lib", |
40 | 40 | "lint-fix": "yarn lint --fix",
|
41 | 41 | "lint-markdown-fix": "yarn lint-markdown --fix",
|
42 | 42 | "lint-markdown": "markdownlint \"**/*.md\" --config=.markdownlint.json --ignore-path=.markdownlintignore",
|
43 |
| - "lint": "nx run-many --target=lint --parallel", |
44 |
| - "postinstall": "nx run repo-tools:postinstall-script", |
| 43 | + "lint": "npx nx run-many --target=lint --parallel", |
| 44 | + "postinstall": "npx nx run repo-tools:postinstall-script", |
45 | 45 | "pre-commit": "yarn lint-staged",
|
46 |
| - "start": "nx run website:start", |
47 |
| - "test": "nx run-many --target=test --parallel --exclude integration-tests --exclude website --exclude website-eslint", |
48 |
| - "test-integration": "nx run integration-tests:test", |
49 |
| - "typecheck": "nx run-many --target=typecheck --parallel" |
| 46 | + "start": "npx nx run website:start", |
| 47 | + "test": "npx nx run-many --target=test --parallel --exclude integration-tests --exclude website --exclude website-eslint", |
| 48 | + "test-integration": "npx nx run integration-tests:test", |
| 49 | + "typecheck": "npx nx run-many --target=typecheck --parallel" |
50 | 50 | },
|
51 | 51 | "engines": {
|
52 | 52 | "node": "^16.0.0 || >=18.0.0"
|
|
0 commit comments