-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
31 lines (31 loc) · 900 Bytes
/
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
{
"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 .github/hooks",
"presetup": "yarn",
"setup": "yarn && lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"preship": "lerna run preversion && yarn test",
"fix": "yarn cache clean && rm -rf node_modules && yarn",
"ship": "IS_SHIPPING=true lerna publish --git-remote ${GHOST_UPSTREAM:-origin}",
"main": "git checkout main && git pull ${GHOST_UPSTREAM:-origin} main && yarn"
},
"devDependencies": {
"eslint": "8.57.1",
"eslint-plugin-ghost": "3.4.0",
"husky": "9.1.7",
"lerna": "8.2.2",
"lint-staged": "15.5.1"
}
}