-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.93 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.93 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
41
42
43
44
45
46
47
48
{
"private": true,
"version": "0.0.0",
"repository": "https://github.com/TryGhost/migrate",
"author": "Ghost Foundation",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.21.1"
},
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"dev": "NODE_ENV=development NODE_OPTIONS='--import tsx --conditions=development' ./packages/migrate/bin/cli.js",
"dev:lessmemory": "NODE_OPTIONS=\"--max-old-space-size=2024 --import tsx --conditions=development\" NODE_ENV=development ./packages/migrate/bin/cli.js",
"dev:morememory": "NODE_OPTIONS=\"--max-old-space-size=8192 --import tsx --conditions=development\" NODE_ENV=development ./packages/migrate/bin/cli.js",
"dev:debug": "DEBUG_COLORS=true DEBUG=@tryghost*,migrate:* NODE_ENV=development NODE_OPTIONS='--import tsx --conditions=development' ./packages/migrate/bin/cli.js",
"migrate": "migrate",
"presetup": "pnpm install",
"setup": "pnpm install",
"test:only": "nx run-many -t test --parallel=10 --outputStyle=dynamic-legacy",
"test": "nx run-many -t test lint --parallel=10 --outputStyle=dynamic-legacy",
"test:ci": "nx run-many -t test lint --outputStyle=dynamic",
"lint": "nx run-many -t lint --parallel=10 --outputStyle=dynamic-legacy",
"build": "nx run-many -t build --parallel=10 --outputStyle=dynamic-legacy",
"build:watch": "nx run-many -t build:watch --parallel=10 --outputStyle=dynamic-legacy",
"ship": "pnpm test && nx release version --git-push --git-remote ${GHOST_UPSTREAM:-origin}",
"ship:first-release": "pnpm ship --first-release",
"update": "git pull origin main && pnpm install"
},
"devDependencies": {
"@tryghost/errors": "3.0.3",
"eslint": "8.57.1",
"eslint-plugin-ghost": "3.5.0",
"nx": "22.6.4",
"@nx/js": "22.6.4",
"tsx": "4.21.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"nx",
"sharp"
]
}
}