|
58 | 58 | "typetest": "tsd -f \"src/**/*.test-d.ts?(x)\"", |
59 | 59 | "e2e": "cross-env TYPE=e2e jest", |
60 | 60 | "serve": "npx -y serve@14 -p 3030", |
61 | | - "verdaccio": "npx -y verdaccio@5 -c verdaccio/config.yml" |
| 61 | + "verdaccio": "npx -y verdaccio@5 -c verdaccio/config.yml", |
| 62 | + "lint-all": "run-p \"lint:**\"", |
| 63 | + "lint:tsc": "tsc", |
| 64 | + "lint:eslint": "eslint \"**/*\"", |
| 65 | + "lint:prettier": "prettier --check \"**/*\"", |
| 66 | + "fix-all": "run-s \"fix:**\"", |
| 67 | + "fix:eslint": "eslint --fix \"**/*\"", |
| 68 | + "fix:prettier": "prettier --write \"**/*\"", |
| 69 | + "git-clean": "git clean -d -f -x -e node_modules -e package-lock.json" |
62 | 70 | }, |
63 | 71 | "peerDependencies": { |
64 | 72 | "react": "^18", |
65 | 73 | "statofu": "^1" |
66 | 74 | }, |
67 | 75 | "devDependencies": { |
| 76 | + "@commitlint/config-conventional": "^17.6.6", |
68 | 77 | "@rollup/plugin-commonjs": "^25.0.1", |
69 | 78 | "@rollup/plugin-node-resolve": "^15.1.0", |
70 | 79 | "@rollup/plugin-terser": "^0.4.3", |
|
80 | 89 | "@types/node": ">=16", |
81 | 90 | "@types/react": "^18.2.14", |
82 | 91 | "@types/react-dom": "^18.2.6", |
83 | | - "@typescript-eslint/eslint-plugin": "^5.59.11", |
84 | | - "@typescript-eslint/parser": "^5.59.11", |
| 92 | + "@typescript-eslint/eslint-plugin": "^5.60.0", |
| 93 | + "@typescript-eslint/parser": "^5.60.0", |
85 | 94 | "cross-env": "^7.0.3", |
86 | 95 | "cross-spawn": "^7.0.3", |
87 | 96 | "eslint": "^8.42.0", |
|
0 commit comments