-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.97 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
{
"name": "gh-app",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "yarn && husky install",
"dev": "yarn workspaces foreach -piv run dev",
"build": "yarn workspaces foreach -ptv run build",
"preview": "run-p \"preview:**\"",
"preview:api": "yarn workspace api start",
"preview:web": "yarn workspace web preview",
"test": "yarn workspaces foreach -piv run test",
"lint": "run-p \"lint:**\"",
"lint:prettier": "prettier --check .",
"lint:script": "eslint . --ext \".js,.jsx,.ts,.tsx\"",
"format": "run-s \"format:**\"",
"format:prettier": "prettier --write .",
"format:eslint": "yarn lint:script --fix",
"scaffold": "scaffdog generate",
"clean": "rimraf \"packages/*/lib\" \"packages/*/tsconfig.tsbuildinfo\"",
"storybook": "yarn workspace web storybook",
"release": "lerna publish from-package",
"release:canary": "yarn release --dist-tag canary",
"versionup": "lerna version",
"versionup:canary": "lerna version prerelease --preid canary",
"versionup:cancel": "git tag --points-at @ | xargs -I{} git tag --delete {} && git reset --hard @^",
"versionup:major": "lerna version major",
"versionup:minor": "lerna version minor",
"versionup:patch": "lerna version patch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,yml,json}": [
"prettier --write"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.22.0",
"@typescript-eslint/parser": "5.22.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "7.0.4",
"lerna": "4.0.0",
"lint-staged": "12.4.1",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"prettier-plugin-packagejson": "2.2.17",
"rimraf": "3.0.2",
"scaffdog": "1.1.0"
},
"packageManager": "[email protected]",
"installConfig": {
"hoistingLimits": "workspaces"
}
}