-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
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.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/node": "^18",
"commit-and-tag-version": "^12.5.0",
"git-branch-is": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"syncpack": "^13.0.0",
"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": ">=18.18",
"npm": ">=10"
},
"packageManager": "[email protected]"
}