-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "request",
"namespace": "@hulla",
"private": true,
"scripts": {
"build": "turbo build",
"lint": "turbo lint",
"format": "turbo format",
"test": "turbo test",
"prepare": "husky"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.5.0",
"@types/eslint__js": "^8.42.3",
"bunchee": "^5.2.2",
"commitizen": "^4.3.0",
"cz-emoji": "1.3.2-canary.2",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"msw": "^2.3.1",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"turbo": "^2.0.5",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1",
"vitest": "^1.6.0"
},
"workspaces": ["packages/*"],
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
},
"cz-emoji": {
"skipScope": true,
"scopes": [
"package",
"examples",
"repo"
],
"types": [
{
"emoji": "✅",
"code": ":white_check_mark: feat:",
"description": "a new functionality",
"name": "feat"
},
{
"emoji": "🐞",
"code": ":lady_beetle: fix:",
"description": "a bug fix",
"name": "fix"
},
{
"emoji": "🔧",
"code": ":wrench: update:",
"description": "a code change that neither fixes a bug nor adds a feature",
"name": "update"
},
{
"emoji": "📚",
"code": ":books: docs:",
"description": "documentations",
"name": "docs"
},
{
"emoji": "🧪",
"code": ":test_tube: tests:",
"description": "tests",
"name": "tests"
},
{
"emoji": "🪛",
"code": ":screwdriver: config:",
"description": "configuration files",
"name": "config"
},
{
"emoji": "🤖",
"code": ":robot: devops:",
"description": "ci/cd or other form of automation",
"name": "devops"
},
{
"emoji": "♻️",
"code": ":recycle: cleanup:",
"description": "code cleanup",
"name": "cleanup"
},
{
"emoji": "📦",
"code": ":package: release:",
"description": "new release bundle",
"name": "release"
}
]
}
}
}