forked from TryGhost/migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.25 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
{
"private": true,
"repository": "https://github.com/TryGhost/migrate",
"author": "Ghost Foundation",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"eslintIgnore": [
"**/node_modules/**"
],
"scripts": {
"predev": "yarn build",
"dev": "NODE_ENV=development migrate",
"dev:morememory": "NODE_OPTIONS=\"--max-old-space-size=8192\" NODE_ENV=development migrate",
"dev:debug": "DEBUG_COLORS=true DEBUG=@tryghost*,migrate:* NODE_ENV=development migrate",
"premigrate": "yarn build",
"migrate": "migrate",
"presetup": "yarn",
"setup": "yarn install",
"test:only": "lerna run test",
"test": "lerna run test,lint",
"lint": "lerna run lint",
"build": "lerna run build",
"build:watch": "lerna run build:watch",
"preship": "yarn build && yarn test",
"ship": "lerna publish --no-private",
"update": "git pull origin main && yarn"
},
"devDependencies": {
"@tryghost/errors": "1.3.6",
"eslint": "8.57.0",
"eslint-plugin-ghost": "3.4.0",
"jest": "29.7.0",
"jest-extended": "4.0.2"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}