forked from TryGhost/Koenig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.34 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
{
"private": true,
"repository": "https://github.com/TryGhost/Koenig",
"author": "Ghost Foundation",
"license": "MIT",
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "yarn workspace @tryghost/koenig-lexical dev",
"prepare": "husky install .github/hooks",
"presetup": "yarn",
"setup": "lerna bootstrap && lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"preship": "yarn test",
"ship": "lerna publish --git-remote ${GHOST_UPSTREAM:-origin}",
"main": "git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn"
},
"devDependencies": {
"eslint": "8.40.0",
"eslint-plugin-ghost": "2.18.1",
"husky": "8.0.3",
"lerna": "6.6.2",
"lint-staged": "13.2.3"
},
"renovate": {
"extends": [
"@tryghost:quietJS",
"@tryghost:automergeDevDependencies"
],
"packageRules": [
{
"groupName": "rollup + plugins",
"packagePatterns": [
"^rollup"
]
},
{
"groupName": "lexical",
"packagePatterns": [
"^lexical",
"^@lexical"
]
},
{
"groupName": "vitest",
"packagePatterns": [
"^vitest",
"^@vitest"
]
}
],
"ignoreDeps": [
"vite"
]
}
}