-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.79 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
44
45
46
47
{
"name": "firebase-scripts",
"version": "0.0.0-semantically-released",
"private": true,
"repository": "github:WillBooster/firebase-scripts",
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all --parallel --verbose run build",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn prettify && yarn workspaces foreach --all --parallel --verbose run format",
"postinstall": "husky || true",
"lint": "yarn workspaces foreach --all --parallel --verbose run lint",
"lint-fix": "yarn workspaces foreach --all --parallel --verbose run lint-fix",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky || true",
"prettify": "prettier --cache --color --write \"**/{.*/,}*.{cjs,css,cts,htm,html,js,json,json5,jsonc,jsx,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}\" \"!**/packages/**\" \"!**/test-fixtures/**\"",
"release": "yarn multi-semantic-release --debug",
"test": "CI=1 FORCE_COLOR=3 yarn workspaces foreach --all --verbose run test",
"typecheck": "yarn workspaces foreach --all --parallel --verbose run typecheck"
},
"prettier": "@willbooster/prettier-config",
"devDependencies": {
"@qiwi/multi-semantic-release": "7.1.2",
"@types/eslint": "8.56.11",
"@types/micromatch": "4.0.9",
"@typescript-eslint/parser": "7.18.0",
"@willbooster/prettier-config": "9.1.3",
"conventional-changelog-conventionalcommits": "6.1.0",
"eslint": "8.57.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"micromatch": "4.0.8",
"pinst": "3.0.0",
"prettier": "3.3.3",
"sort-package-json": "2.10.1",
"typescript": "5.6.3"
},
"packageManager": "yarn@4.5.1",
"engines": {
"node": ">=18"
}
}