-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 996 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 996 Bytes
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
{
"name": "locatr",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*"
],
"nohoist": [
"**"
]
},
"scripts": {
"dev": "yarn workspaces run dev",
"build": "yarn workspaces run build",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint",
"type-check": "yarn workspaces run type-check",
"format": "yarn workspaces run format",
"format:check": "yarn workspaces run format:check",
"commit": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"typescript": "^5.9.3"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=20.17.0"
}
}