-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.23 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
{
"name": "webapp-packages",
"version": "0.0.0",
"description": "Monorepo for Boomerang webapp packages",
"author": "Timothy Bula <timrbula@gmail.com>",
"license": "MIT",
"repository": "git@github.com:boomerang-io/webapp-packages.git",
"workspaces": [
"packages/*"
],
"scripts": {
"changed": "lerna changed",
"release": "lerna publish"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"chalk": "^5.0.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^7.1.0",
"husky": "^4.2.5",
"jest": "^27.4.7",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"test"
]
]
}
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD --exclude-dependents"
}
},
"private": true
}