-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
55 lines (55 loc) · 1.13 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
{
"name": "root",
"private": true,
"devDependencies": {
"auto": "11.1.6",
"lerna": "^7.2.0"
},
"scripts": {
"start": "pnpm run --recursive --parallel start",
"test": "pnpm run --recursive test",
"build": "pnpm run --recursive build",
"release": "auto shipit"
},
"repository": "cockroachdb/ui",
"author": "Cockroach Labs <[email protected]>",
"auto": {
"plugins": [
"npm"
],
"noDefaultLabels": true,
"labels": [
{
"releaseType": "major",
"name": "🤖 major"
},
{
"releaseType": "minor",
"name": "🤖 minor"
},
{
"releaseType": "patch",
"name": "🤖 patch"
},
{
"releaseType": "major",
"name": "🤖 major"
},
{
"releaseType": "skip",
"name": "🤖 skip-release"
},
{
"releaseType": "none",
"name": ":memo: docs",
"changelogTitle": "📝 Documentation"
}
]
},
"pnpm": {
"overrides": {
"@types/react-lines-ellipsis>@types/react": "17",
"@types/recharts>@types/react": "17"
}
}
}