-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1 KB
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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"arui-presets-lint": "8.8.1",
"conventional-changelog-cli": "3.0.0",
"turbo": "^2.5.3"
},
"scripts": {
"publish-packages": "yarn test && changeset version && yarn npm-publish",
"npm-publish": "yarn workspaces foreach --all --no-private npm publish --tolerate-republish && yarn changeset tag",
"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"
]
},
"packageManager": "yarn@4.13.0"
}