-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.27 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
{
"bin": "./cli.js",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"semantic-release": "^17.0.8",
"semantic-release-monorepo": "^7.0.2"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"name": "pool-time-packages",
"private": true,
"scripts": {
"clean:dependencies": "rm -rf node_modules && rm -rf projects/react-pool-time/node_modules && rm -rf projects/documentation/node_modules",
"commit": "yarn git-cz",
"commit:check": "commitlint --from=HEAD~1",
"commit:check:ci": "commitlint",
"eslint": "yarn eslint:fix",
"eslint:base": "eslint . --ext .js,.jsx,.ts,.tsx",
"eslint:check": "yarn eslint:base",
"eslint:fix": "yarn eslint:base --fix",
"prettier": "yarn prettier:fix",
"prettier:base": "prettier 'projects/**/*.{js,ts,tsx}' --check",
"prettier:check": "yarn prettier:base --check",
"prettier:fix": "yarn prettier:base --write"
},
"workspaces": {
"packages": [
"projects/*"
]
}
}