forked from cmfcmf/docusaurus-search-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^16.18.12",
"commit-and-tag-version": "^11.1.0",
"git-branch-is": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.8.4",
"syncpack": "^9.8.4",
"turbo": "^1.8.2"
},
"scripts": {
"prepare": "husky install",
"lint": "turbo lint:all",
"format": "turbo format:all",
"dev": "turbo dev",
"build": "turbo build",
"serve": "turbo serve",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"lint:style": "prettier --check **/*.{js,jsx,ts,tsx,json,css,scss,md,html}",
"lint:dependencies": "syncpack list-mismatches",
"format:style": "prettier --write **/*.{js,jsx,ts,tsx,json,css,scss,md,html}",
"format:dependencies": "syncpack fix-mismatches",
"release": "bash scripts/release.sh"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write"
]
},
"engines": {
"node": ">=16.14",
"npm": ">=8"
},
"packageManager": "[email protected]"
}