-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "semantic-release-monorepo",
"private": true,
"scripts": {
"lint": "eslint --ext .ts ./src/**/*.ts",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"build": "pnpm -r --filter=./packages/* run build",
"prepare": "is-ci || husky install"
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
],
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@bubkoo/eslint-config": "^1.3.0",
"@bubkoo/semantic-release-config": "^1.6.0",
"@commitlint/config-conventional": "^17.4.2",
"@types/node": "^18.11.18",
"eslint": "^8.33.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"semantic-release": "^20.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"pnpm": {
"overrides": {
"@semantic-release-monorepo/core": "workspace:*"
}
},
"author": {
"name": "bubkoo",
"email": "bubkoo.wy@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/bubkoo/semantic-release-monorepo",
"bugs": {
"url": "https://github.com/bubkoo/semantic-release-monorepo/issues"
},
"packageManager": "pnpm@7.1.9",
"engines": {
"node": ">=14.6.0"
}
}