-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 3.3 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
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
{
"name": "xplat-docfx",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tocBuildA": "tsc && gulp --lang=en buildTOC --plat=Angular",
"tocBuildB": "tsc && gulp --lang=en buildTOC --plat=Blazor",
"tocBuildR": "tsc && gulp --lang=en buildTOC --plat=React",
"tocBuildW": "tsc && gulp --lang=en buildTOC --plat=WebComponents",
"toc2json": "tsc && gulp generateTocJson --plat=Blazor --lang=en",
"updateApiSection": "tsc && gulp updateApiSection",
"verifyMarkdown": "tsc && gulp verifyMarkdown",
"logArgs": "tsc && gulp logArgs --plat=Blazor --lang=en",
"generateRedirects": "tsc && gulp generateRedirects",
"build": "tsc",
"buildAngular": "tsc && gulp buildOutputAngular",
"buildBlazor": "tsc && gulp buildOutputBlazor",
"buildReact": "tsc && gulp buildOutputReact",
"buildWebComponents": "tsc && gulp buildOutputWC",
"buildWC": "tsc && gulp buildOutputWC",
"buildAll": "tsc && gulp buildAll",
"start": "tsc && gulp startDefault",
"startAngular": "tsc && gulp startAngular",
"startBlazor": "tsc && gulp startBlazor",
"startReact": "tsc && gulp startReact",
"startWC": "tsc && gulp startWC",
"stageAngular": "tsc && gulp startAngular --env=staging",
"stageBlazor": "tsc && gulp startBlazor --env=staging",
"stageReact": "tsc && gulp startReact --env=staging",
"stageWC": "tsc && gulp startWC --env=staging",
"stageBuildReact": "tsc && gulp buildOutputReact --env=staging",
"stageBuildBlazor": "tsc && gulp buildOutputBlazor --env=staging",
"stageBuildAngular": "tsc && gulp buildOutputAngular --env=staging",
"stageBuildWC": "tsc && gulp buildOutputWC --env=staging",
"build-docfx": "tsc && gulp buildDocfx_All",
"build-docfx-angular": "tsc && gulp buildDocfx_Angular",
"build-docfx-blazor": "tsc && gulp buildDocfx_Blazor",
"build-docfx-react": "tsc && gulp buildDocfx_React",
"build-docfx-wc": "tsc && gulp buildDocfx_WC",
"build-docfx-wc-jp": "tsc && gulp buildDocfx_WC --lang=jp",
"build-docfx-args": "tsc && gulp buildDocfx_WithArgs",
"build-staging": "tsc && gulp buildDocfx_WithArgs --env=staging",
"build-production": "tsc && gulp buildDocfx_WithArgs --env=production",
"test": "tsc && mocha",
"postinstall": "dotnet tool restore --ignore-failed-sources"
},
"keywords": [],
"author": "infragistics",
"repository": "https://github.com/IgniteUI/igniteui-xplat-docs",
"license": "ISC",
"dependencies": {
"es6-shim": "^0.35.3",
"gulp-autoprefixer": "^8.0.0",
"to-vfile": "^7.2.3",
"yargs": "^17.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.0",
"browser-sync": "^2.27.10",
"chai": "^4.3.7",
"del": "^6.1.1",
"event-stream": "^4.0.1",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-dart-sass": "^1.0.2",
"gulp-exec": "^5.0.0",
"gulp-file-include": "^2.1.1",
"gulp-flatten": "^0.4.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-shell": "^0.7.1",
"gulp-yaml": "^2.0.4",
"igniteui-docfx-template": "3.7.6",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"remark": "^13.0.0",
"remark-frontmatter": "^3.0.0",
"through2": "^4.0.2",
"typescript": "4.8.4",
"unist-util-visit": "^2.0.3"
}
}