forked from DominikPieper/nx-architectures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "starlight-docs",
"private": true,
"version": "0.0.1",
"scripts": {
"dev": "nx exec -- astro dev",
"serve": "nx exec -- astro dev",
"build": "nx exec -- astro build",
"preview": "astro preview",
"astro": "nx exec -- astro",
"create-playground": "ts-node -P scripts/tsconfig.scripts.json scripts/create-playground.ts"
},
"dependencies": {
"@astrojs/starlight": "0.11.0",
"@types/culori": "^2.0.1",
"astro": "^3.3.0",
"culori": "^3.2.0",
"sharp": "^0.32.6",
"typescript": "^5.2.2"
},
"devDependencies": {
"@astrojs/ts-plugin": "^1.2.0",
"@nx/devkit": "16.10.0",
"@types/fs-extra": "^11.0.2",
"all-contributors-cli": "^6.26.1",
"fs-extra": "^11.1.1",
"hast-util-from-html": "^1.0.2",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.2.0",
"nx": "16.10.0",
"rehype": "^13.0.1",
"ts-node": "10.9.1",
"unist-util-visit": "^4.1.2"
},
"nx": {
"targets": {
"dev": {
"outputs": [
"{projectRoot}/dist"
]
},
"start": {
"outputs": [
"{projectRoot}/dist"
]
},
"build": {
"outputs": [
"{projectRoot}/dist"
]
}
}
}
}