|
3 | 3 | "private": true,
|
4 | 4 | "license": "MIT",
|
5 | 5 | "engines": {
|
6 |
| - "pnpm": ">=6.14.0" |
| 6 | + "node": ">=14.0.0", |
| 7 | + "pnpm": ">=7.0.0" |
7 | 8 | },
|
8 | 9 | "scripts": {
|
9 | 10 | "postinstall": "pnpm build",
|
10 | 11 | "format": "prettier --check \"./**/*.ts\" README.md",
|
11 | 12 | "format:fix": "prettier --write \"./**/*.ts\" README.md",
|
12 |
| - "lint": "pnpm run --parallel --aggregate-output --reporter append-only --filter ./packages lint", |
13 |
| - "lint:fix": "pnpm --parallel --aggregate-output --reporter append-only --filter ./packages lint:fix", |
14 |
| - "typecheck": "pnpm --parallel --aggregate-output --reporter append-only --filter ./packages typecheck", |
15 |
| - "build": "tsc --build --verbose ./tsconfig.prod.json && pnpm run --parallel --filter ./packages post-build", |
| 13 | + "lint": "pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' lint", |
| 14 | + "lint:fix": "pnpm --parallel --aggregate-output --reporter append-only --filter './packages/**' lint:fix", |
| 15 | + "typecheck": "pnpm --parallel --aggregate-output --reporter append-only --filter './packages/**' typecheck", |
| 16 | + "build": "tsc --build --verbose ./tsconfig.prod.json && pnpm run --parallel --filter './packages/**' post-build", |
16 | 17 | "watch": "tsc --build --verbose --watch ./tsconfig.prod.json",
|
17 |
| - "clean": "pnpm --filter ./packages clean", |
18 |
| - "compile-contracts": "ts-node --transpile-only ./scripts/compile-contracts && pnpm run --parallel --filter ./packages compile-contracts", |
19 |
| - "test": "pnpm compile-contracts && pnpm run --parallel --aggregate-output --reporter append-only --filter ./packages test", |
| 18 | + "clean": "pnpm --filter './packages/**' clean", |
| 19 | + "compile-contracts": "ts-node --transpile-only ./scripts/compile-contracts && pnpm run --parallel --filter './packages/**' compile-contracts", |
| 20 | + "test": "pnpm compile-contracts && pnpm run --parallel --aggregate-output --reporter append-only --filter './packages/**' test", |
20 | 21 | "test:fix": "pnpm lint:fix && pnpm test && pnpm format:fix && pnpm typecheck",
|
21 | 22 | "no-git-changes": "./scripts/no-git-changes.sh",
|
22 | 23 | "check-examples": "ts-node --transpile-only ./scripts/check-examples.ts",
|
|
30 | 31 | "@typescript-eslint/parser": "4.15.1",
|
31 | 32 | "earljs": "0.2.2",
|
32 | 33 | "eslint": "^7.29.0",
|
33 |
| - "eslint-config-typestrict": "^1.0.2", |
| 34 | + "eslint-config-typestrict": "^1.0.3", |
34 | 35 | "eslint-plugin-import": "^2.23.4",
|
35 | 36 | "eslint-plugin-no-only-tests": "^2.6.0",
|
36 | 37 | "eslint-plugin-simple-import-sort": "^7.0.0",
|
37 |
| - "eslint-plugin-sonarjs": "^0.8.0-125", |
| 38 | + "eslint-plugin-sonarjs": "^0.13.0", |
38 | 39 | "eslint-plugin-unused-imports": "^1.1.1",
|
39 | 40 | "mocha": "^8.2.0",
|
40 | 41 | "prettier": "^2.3.1",
|
41 | 42 | "ts-node": "^10.7.0",
|
42 | 43 | "@types/node": "^14",
|
43 | 44 | "typescript": "^4.6"
|
| 45 | + }, |
| 46 | + "pnpm": { |
| 47 | + "peerDependencyRules": { |
| 48 | + "ignoreMissing": ["typescript", "@types/node"] |
| 49 | + } |
44 | 50 | }
|
45 | 51 | }
|
0 commit comments