-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
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": "@beomy/root",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"author": "Hyo Bum Lee",
"license": "MIT",
"keywords": [],
"scripts": {
"blog": "yarn workspace @beomy/blog",
"games": "yarn workspace @beomy/games",
"design-system": "yarn workspace @beomy/design-system",
"utils": "yarn workspace @beomy/utils",
"type-check": "yarn workspaces -Ap foreach run type-check",
"lint": "yarn workspaces foreach -Ap run lint",
"format": "yarn workspaces foreach -Ap run format",
"test": "yarn workspaces foreach -Ap run test",
"postinstall": "husky install",
"commit": "cz"
},
"lint-staged": {
"*.{ts,js}": [
"eslint '**/*.+(ts|js)' --fix",
"prettier '**/*.+(ts|js)' --write"
]
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@cspell/eslint-plugin": "6.12.0",
"@types/node": "20.11.1",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.4.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.4",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"packageManager": "yarn@4.3.1"
}