-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.23 KB
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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/TryGhost/framework.git"
},
"author": "Ghost Foundation",
"license": "MIT",
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "echo \"Implement me!\"",
"main": "git checkout main && git pull && yarn",
"presetup": "yarn",
"setup": "yarn",
"test": "nx run-many -t test --parallel=10 --outputStyle=dynamic-legacy",
"test:ci": "nx run-many -t test --outputStyle=dynamic",
"lint": "nx run-many -t lint --outputStyle=dynamic",
"preship": "git diff --quiet && git diff --cached --quiet || (echo 'Error: working tree must be clean before shipping' && exit 1) && yarn test",
"ship": "nx release version --git-push --git-remote ${GHOST_UPSTREAM:-origin}",
"ship:patch": "yarn ship patch",
"ship:minor": "yarn ship minor",
"ship:major": "yarn ship major",
"ship:first-release": "yarn ship patch --first-release"
},
"devDependencies": {
"@nx/js": "22.5.3",
"@vitest/coverage-v8": "3.2.4",
"eslint": "8.57.1",
"eslint-plugin-ghost": "3.4.4",
"nx": "22.5.3",
"sinon": "21.0.1",
"ts-node": "10.9.2",
"vitest": "3.2.4"
}
}