-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.59 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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"arui-presets-lint": "6.1.0",
"commitlint": "^11.0.0",
"conventional-changelog-cli": "3.0.0",
"eslint": "^8.20.0",
"eslint-config-custom": "workspace:*",
"husky": "^4.3.8",
"prettier": "^2.7.1",
"stylelint": "^14.9.1",
"turbo": "^1.10.12"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "yarn commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"publish-packages": "yarn test && changeset version && changeset publish",
"build": "turbo run build",
"test": "turbo run build build:app test validate",
"lint": "turbo run lint"
},
"prettier": "arui-presets-lint/prettier",
"eslintConfig": {
"extends": "./node_modules/arui-presets-lint/eslint"
},
"stylelint": {
"extends": "arui-presets-lint/stylelint"
},
"commitlint": {
"extends": [
"./node_modules/arui-presets-lint/commitlint"
],
"rules": {
"subject-case": [
2,
"never",
[
"start-case",
"pascal-case",
"upper-case"
]
],
"header-max-length": [
2,
"always",
120
]
}
},
"packageManager": "[email protected]"
}