-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
46 lines (46 loc) · 1.04 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
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky install",
"start": "lerna run dev --scope @podlove/docs --stream",
"serve": "lerna run serve",
"lint": "lerna run lint",
"test": "lerna run test",
"test:dev": "lerna run test:dev",
"build": "lerna run build",
"integration:dev": "lerna run integration:dev",
"run": "lerna run",
"update": "lernaupdate",
"version": "lerna version --conventional-commits --changelog-preset angular"
},
"devDependencies": {
"cz-conventional-changelog": "3.3.0",
"husky": "7.0.1",
"lerna": "8.0.0",
"lerna-update-wizard": "0.17.8",
"lint-staged": "11.0.1",
"prettier": "3.3.3"
},
"lint-staged": {
"**/*.{ts,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --concurrent 5"
}
},
"engines": {
"node": "22",
"pnpm": "8"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}