forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.9 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
{
"name": "fluidframework-docs",
"version": "0.25.0",
"private": true,
"description": "Fluid Framework documentation",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "docs"
},
"license": "MIT",
"author": "Microsoft and contributors",
"scripts": {
"build": "npm run build:api-rollup && concurrently npm:build:md-magic npm:build:api-documenter && npm run hugo",
"build:api": "npm run build:api-rollup && npm run build:api-documenter",
"build:api-documenter": "run-script-os",
"build:api-documenter:default": "[ -e ../_api-extractor-temp/doc-models ] && api-documenter generate --config api-documenter.json --input-folder ./_api-extractor-temp/_build --output-folder content/docs/apis/ ; exit 0",
"build:api-documenter:win32": "if exist ../_api-extractor-temp/doc-models api-documenter generate --config api-documenter.json --input-folder ./_api-extractor-temp/_build --output-folder content/docs/apis/",
"build:api-rollup": "rimraf ./_api-extractor-temp && node ./rollup-api-json.js ../_api-extractor-temp/doc-models/ ./_api-extractor-temp/",
"build:fast": "npm run build:api-rollup && concurrently npm:build:md-magic npm:build:api-documenter && npm run hugo",
"build:md-magic": "node md.js",
"ci:build": "npm run download && npm run build",
"clean": "rimraf public/** content/docs/apis/**",
"download": "concurrently \"npm run download:api\" && npm run build:api-documenter",
"download:api": "download --extract --out ../_api-extractor-temp/doc-models/ https://fluidframework.blob.core.windows.net/api-extractor-json/latest.tar.gz",
"hugo": "hugo",
"linkcheck": "npm run linkcheck:fast -- --external",
"linkcheck:fast": "linkcheck http://localhost:1313 --skip-file skipped-urls.txt",
"lint": "markdownlint-cli2",
"lint:fix": "markdownlint-cli2-fix",
"start": "npm run build:md-magic && hugo server"
},
"dependencies": {
"@tylerbu/custom-api-documenter": "0.3.3-tylerbu-6-prerelease",
"@tylerbu/dl-cli": "1.1.2-tylerbu-0",
"@tylerbu/markdown-magic": "^2.4.0-tylerbu-1",
"@vscode/codicons": "0.0.28",
"broken-link-checker": "^0.7.8",
"concurrently": "^6.2.0",
"copyfiles": "^2.1.0",
"cpy": "^8.1.2",
"deepdash": "^5.3.9",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"hugo-extended": "^0.93.1",
"linkcheck-bin": "^2.0.19-0",
"markdown-magic-package-json": "^2.0.2",
"markdown-magic-package-scripts": "^1.2.1",
"markdown-magic-template": "^1.0.0",
"markdownlint-cli2": "^0.4.0",
"markdownlint-rule-emphasis-style": "^1.0.1",
"markdownlint-rule-github-internal-links": "^0.0.2",
"markdownlint-rule-helpers": "^0.15.0",
"node-fetch": "^2.6.7",
"replace-in-file": "^6.2.0",
"rimraf": "^2.6.2",
"run-script-os": "^1.1.5",
"serve": "^13.0.2",
"shelljs": "^0.8.5"
}
}