|
16 | 16 | "vyper"
|
17 | 17 | ],
|
18 | 18 | "scripts": {
|
19 |
| - "lint": "yarn prettier --check && yarn eslint", |
20 |
| - "lint:fix": "yarn prettier --write && yarn eslint --fix", |
| 19 | + "lint": "pnpm prettier --check && pnpm eslint", |
| 20 | + "lint:fix": "pnpm prettier --write && pnpm eslint --fix", |
21 | 21 | "eslint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
|
22 | 22 | "prettier": "prettier \"**/*.{js,md,json}\"",
|
23 |
| - "pretest": "cd ../.. && yarn build", |
| 23 | + "pretest": "cd ../.. && pnpm build", |
24 | 24 | "test": "mocha --recursive \"test/**/*.ts\"",
|
25 | 25 | "build": "tsc --build .",
|
26 |
| - "prepublishOnly": "yarn build", |
| 26 | + "prepublishOnly": "pnpm build", |
27 | 27 | "clean": "rimraf dist"
|
28 | 28 | },
|
29 | 29 | "files": [
|
|
40 | 40 | "semver": "^6.3.0"
|
41 | 41 | },
|
42 | 42 | "devDependencies": {
|
| 43 | + "@nomicfoundation/eslint-plugin-hardhat-internal-rules": "workspace:^", |
| 44 | + "@nomicfoundation/eslint-plugin-slow-imports": "workspace:^", |
43 | 45 | "@types/chai": "^4.2.0",
|
| 46 | + "@types/chai-as-promised": "^7.1.8", |
| 47 | + "@types/debug": "^4.1.4", |
44 | 48 | "@types/fs-extra": "^5.1.0",
|
45 | 49 | "@types/lodash": "^4.14.123",
|
46 | 50 | "@types/mocha": ">=9.1.0",
|
47 | 51 | "@types/node": "^16.0.0",
|
| 52 | + "@types/semver": "^6.0.2", |
48 | 53 | "@typescript-eslint/eslint-plugin": "5.61.0",
|
49 | 54 | "@typescript-eslint/parser": "5.61.0",
|
50 | 55 | "chai": "^4.2.0",
|
|
54 | 59 | "eslint-plugin-import": "2.27.5",
|
55 | 60 | "eslint-plugin-no-only-tests": "3.0.0",
|
56 | 61 | "eslint-plugin-prettier": "3.4.0",
|
57 |
| - "hardhat": "^2.8.3", |
| 62 | + "hardhat": "workspace:^", |
58 | 63 | "mocha": "^10.0.0",
|
59 | 64 | "prettier": "2.4.1",
|
60 | 65 | "rimraf": "^3.0.2",
|
61 | 66 | "ts-node": "^10.8.0",
|
62 | 67 | "typescript": "~5.0.0"
|
63 | 68 | },
|
64 | 69 | "peerDependencies": {
|
65 |
| - "hardhat": "^2.8.3" |
| 70 | + "hardhat": "workspace:^" |
66 | 71 | }
|
67 | 72 | }
|
0 commit comments