-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 820 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 820 Bytes
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
{
"name": "@apps/website",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vitepress dev .",
"build": "vitepress build .",
"preview": "vitepress preview ."
},
"dependencies": {
"@apps/playground": "workspace:*",
"esbuild-wasm": "0.21.2",
"monaco-editor": "0.48.0",
"is-ci": "^3.0.1"
},
"devDependencies": {
"vitepress": "^1.1.3"
},
"nx": {
"projectType": "application",
"includedScripts": [
"dev",
"build",
"preview"
],
"targets": {
"dev": {
"dependsOn": [
"@apps/playground:build"
]
},
"build": {
"dependsOn": [
"@apps/playground:build"
],
"outputs": [
"{projectRoot}/.vitepress/dist"
]
}
}
}
}