-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"private": true,
"type": "module",
"name": "@saberhq/saber-build-common",
"description": "Common build configurations across Saber projects.",
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.nix": "nixpkgs-fmt",
"*.{ts,tsx,mts,cts}": "eslint --cache --fix",
"*.{md,js,jsx,json,yml,yaml,css,md}": "prettier --write"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@saberhq/eslint-config": "workspace:*",
"@saberhq/eslint-config-react": "workspace:*",
"@saberhq/tsconfig": "workspace:*",
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@typescript-eslint/utils": "^7.16.1",
"@yarnpkg/doctor": "^4.0.2",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
},
"scripts": {
"build": "yarn workspaces foreach --all --exclude @saberhq/saber-build-common -ptv run build",
"clean": "yarn workspaces foreach --all --exclude @saberhq/saber-build-common -ptv run clean",
"publish:all": "yarn workspaces foreach --all --exclude @saberhq/saber-build-common -ptv npm publish",
"typecheck": "tsc --build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:ci": "eslint . --max-warnings=0",
"prepare": "husky install",
"doctor:packages": "yarn doctor packages/"
},
"version": "3.4.3",
"packageManager": "yarn@4.3.1"
}