|
3 | 3 | "private": true,
|
4 | 4 | "license": "MIT",
|
5 | 5 | "scripts": {
|
| 6 | + "postinstall": "husky install", |
6 | 7 | "clean:": "yarn workspaces foreach -pv run clean",
|
7 | 8 | "build:": "yarn workspaces foreach -ivt run build",
|
8 | 9 | "start:": "yarn workspaces foreach -piv run start",
|
9 |
| - "lint:": "essex lint --fix --strict", |
| 10 | + "lint:check": "eslint \"./packages/*/src/**/*.{js,jsx,ts,tsx}\"", |
| 11 | + "lint": "eslint --fix \"./packages/*/src/**/*.{js,jsx,ts,tsx}\"", |
| 12 | + "format:check": "prettier --check \"./packages/*/src/**/*.{js,jsx,ts,tsx}\"", |
| 13 | + "format": "prettier --write \"./packages/*/src/**/*.{js,jsx,ts,tsx}\"", |
10 | 14 | "build:lib-wasm": "cd packages/lib-wasm && wasm-pack build --release --target web --out-dir ../../target/wasm",
|
11 |
| - "prettify:": "essex prettify", |
12 |
| - "rebuild-all": "cargo clean && run-s clean: && cargo build --release && run-s build:lib-wasm && yarn install && run-s build:" |
| 15 | + "rebuild-all": "cargo clean && run-s clean: && cargo build --release && run-s build:lib-wasm && yarn install && run-s build:", |
| 16 | + "git:precommit": "lint-staged" |
13 | 17 | },
|
14 | 18 | "prettier": "@essex/prettier-config",
|
15 | 19 | "devDependencies": {
|
16 | 20 | "@babel/core": "^7.17.0",
|
17 | 21 | "@babel/preset-env": "^7.16.11",
|
18 | 22 | "@babel/preset-react": "^7.16.7",
|
19 | 23 | "@babel/preset-typescript": "^7.16.7",
|
20 |
| - "@essex/eslint-config": "^19.0.2", |
21 |
| - "@essex/eslint-plugin": "^19.0.2", |
22 |
| - "@essex/jest-config": "^19.0.2", |
| 24 | + "@essex/eslint-config": "^20.3.1", |
| 25 | + "@essex/eslint-plugin": "^20.3.2", |
| 26 | + "@essex/jest-config": "^21.0.8", |
23 | 27 | "@essex/prettier-config": "^18.0.2",
|
24 |
| - "@essex/scripts": "^19.0.6", |
| 28 | + "@essex/scripts": "^20.5.2", |
25 | 29 | "@types/eslint": "^8.4.1",
|
26 | 30 | "@types/prettier": "^2.4.3",
|
27 |
| - "@typescript-eslint/eslint-plugin": "^5.10.2", |
28 |
| - "@typescript-eslint/parser": "^5.10.2", |
29 |
| - "eslint": "^8.8.0", |
| 31 | + "@typescript-eslint/eslint-plugin": "^5.15.0", |
| 32 | + "@typescript-eslint/parser": "^5.15.0", |
| 33 | + "eslint": "^8.11.0", |
30 | 34 | "eslint-import-resolver-node": "^0.3.6",
|
31 | 35 | "husky": "^7.0.4",
|
32 | 36 | "jest": "^27.4.7",
|
33 | 37 | "lint-staged": "^12.3.3",
|
34 |
| - "npm-run-all": "^4.1.5", |
35 | 38 | "prettier": "^2.5.1",
|
36 | 39 | "typescript": "4.4.3"
|
37 | 40 | },
|
|
0 commit comments