forked from HospitalRun/hospitalrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
62
63
64
65
{
"name": "hospitalrun",
"version": "2.0.0",
"description": "HosptialRun mono-repo",
"repository": "[email protected]:HospitalRun/hospitalrun.git",
"author": "Maksim Sink <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"commit": "npx git-cz",
"commit-components": "yarn workspace @hospitalrun/components commit",
"commit-cli": "yarn workspace @hospitalrun/cli commit",
"commit-core": "yarn workspace @hospitalrun/core commit",
"commit-frontend": "yarn workspace @hospitalrun/frontend commit",
"commit-server": "yarn workspace @hospitalrun/server commit",
"update": "yarn upgrade-interactive --latest"
},
"devDependencies": {
"@commitlint/cli": "~8.2.0",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/core": "~8.2.0",
"@commitlint/prompt": "^8.3.5",
"commitizen": "~4.0.3",
"commitlint-config-cz": "^0.13.0",
"cross-env": "~6.0.3",
"cz-conventional-changelog": "^3.1.0",
"dateformat": "~3.0.3",
"husky": "~3.1.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/husky",
"**/husky/**",
"**/jest",
"**/jest/**",
"**/tsdx",
"**/tsdx/**",
"**/cz-conventional-changelog",
"**/cz-conventional-changelog/**",
"**/tap",
"**/tap/**",
"**/tap-mocha-reporter",
"**/tap-mocha-reporter/**",
"**/eslint-plugin-prettier",
"**/eslint-plugin-prettier/**",
"**/eslint-config-prettier",
"**/eslint-config-prettier/**",
"**/webpack",
"**/webpack/**"
]
}
}