forked from TryGhost/Ghost
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.23 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@tryghost/admin",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test:unit": "vitest run",
"typecheck": "tsc -b"
},
"dependencies": {
"@tryghost/activitypub": "*",
"@tryghost/admin-x-framework": "*",
"@tryghost/admin-x-settings": "*",
"@tryghost/koenig-lexical": "1.7.2",
"@tryghost/posts": "*",
"@tryghost/shade": "*",
"@tryghost/stats": "*",
"react": "18.3.1",
"react-dom": "18.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "9.37.0",
"@testing-library/react": "14.3.1",
"@types/react": "18.3.26",
"@types/react-dom": "18.3.7",
"@vitejs/plugin-react-swc": "4.1.0",
"eslint": "9.37.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.24",
"globals": "16.4.0",
"jest-extended": "^6.0.0",
"jsdom": "24.1.0",
"sirv": "3.0.2",
"typescript": "5.8.3",
"typescript-eslint": "8.49.0",
"vite": "7.1.12",
"vite-tsconfig-paths": "5.1.4",
"vitest": "4.0.5"
},
"nx": {
"targets": {
"dev": {
"dependsOn": [
"ghost-admin:dev",
"@tryghost/admin-x-framework:dev",
"@tryghost/admin-x-design-system:dev",
"@tryghost/shade:dev"
]
},
"build:dev": {
"dependsOn": [
"build",
{
"projects": [
"ghost-admin"
],
"target": "build:dev"
}
]
},
"build": {
"outputs": [
"{projectRoot}/dist",
"{workspaceRoot}/ghost/core/core/built/admin"
],
"dependsOn": [
"build",
{
"projects": [
"ghost-admin"
],
"target": "build"
}
]
},
"lint": {
"dependsOn": [
{
"projects": [
"@tryghost/admin-x-framework",
"@tryghost/admin-x-design-system",
"@tryghost/shade"
],
"target": "build"
}
]
}
}
}
}