forked from cypress-io/cypress-realworld-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
133 lines (132 loc) · 3.35 KB
/
renovate.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"extends": ["config:base"],
"baseBranch": "develop",
"automerge": false,
"commitMessage": "{{semanticPrefix}}Update {{depName}} to {{newVersion}} 🌟",
"prTitle": "{{semanticPrefix}}{{#if isPin}}Pin{{else}}Update{{/if}} dependency {{depName}} to version {{#if isRange}}{{newVersion}}{{else}}{{#if isMajor}}{{newVersionMajor}}.x{{else}}{{newVersion}}{{/if}}{{/if}} 🌟",
"major": {
"automerge": false
},
"minor": {
"automerge": false
},
"prConcurrentLimit": 50,
"prHourlyLimit": 1,
"updateNotScheduled": false,
"timezone": "America/New_York",
"lockFileMaintenance": {
"enabled": true
},
"masterIssue": true,
"schedule": ["before 3am on the first day of the month"],
"packageRules": [
{
"packageNames": ["cypress"],
"schedule": ["every weekday"]
},
{
"packageNames": ["babel-loader"],
"allowedVersions": "8.0.6"
},
{
"packageNames": ["@types/express"],
"allowedVersions": "4.17.2"
},
{
"packageNames": ["@types/express-serve-static-core"],
"allowedVersions": "4.17.2"
},
{
"groupName": "automergeTypesMinor",
"automerge": true,
"major": { "automerge": false },
"matchPackagePatterns": ["^@types/"]
},
{
"groupName": "devDeps",
"description": "automerge minor updates of widely used libraries in devDeps",
"automerge": true,
"matchUpdateTypes": ["minor"],
"matchDepTypes": ["devDependencies"]
},
{
"groupName": "Typescript",
"matchPackageNames": ["typescript", "ts-node"]
},
{
"groupName": "React",
"matchPackageNames": ["react", "react-dom", "react-scripts"]
},
{
"groupName": "React Router",
"matchPackageNames": ["react-router", "react-router-dom", "history"]
},
{
"groupName": "Okta",
"matchPackagePatterns": ["^@okta/"]
},
{
"groupName": "Material UI",
"matchPackagePatterns": ["^@material-ui/"]
},
{
"groupName": "Graphql",
"matchPackagePatterns": ["^graphql-"]
},
{
"groupName": "Xstate",
"matchPackageNames": ["xstate", "@xstate/react"]
},
{
"groupName": "ESLint and Prettier",
"matchPackageNames": ["eslint", "prettier"],
"matchPackagePatterns": ["^eslint-config-", "^eslint-plugin-"]
},
{
"groupName": "Express",
"matchPackageNames": ["express", "morgan", "nodemon", "cors", "bcryptjs"],
"matchPackagePatterns": ["^express-", "^passport-"]
},
{
"groupName": "AWS / Amplify",
"matchPackageNames": ["@aws-amplify/ui-react", "aws-amplify"]
},
{
"groupName": "Testing / coverage",
"matchPackageNames": ["nyc", "istanbul-lib-coverage", "@percy/cypress"],
"matchPackagePatterns": ["^cypress/"]
},
{
"groupName": "Misc FE libs",
"matchPackageNames": [
"uuid",
"shortid",
"yup",
"formik",
"dinero.js",
"date-fns",
"clsx",
"axios"
]
},
{
"groupName": "Misc dev tooling",
"matchPackageNames": [
"@faker-js/faker",
"json",
"lowdb",
"start-server-and-test",
"ncp",
"jwks-rsa",
"husky",
"fuse.js",
"dotenv",
"crossenv",
"concurrently",
"uuid",
"shortid",
"yup"
]
}
]
}