-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 836 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 836 Bytes
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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"format": "prettier --write 'packages/*/*.{js,css,md,ts,html}' 'packages/*/!(node_modules)/**/*.{js,css,md,ts,html}'",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"publish": "lerna publish",
"test": "lerna run test",
"test:ci": "lerna run test:ci"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "8.3.6",
"@commitlint/config-conventional": "8.3.6",
"eslint": "6.8.0",
"husky": "4.3.8",
"lerna": "3.22.1",
"prettier": "1.19.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}