forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.69 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
{
"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 && npm run build:md-magic && npm run hugo",
"build:api": "npm run build:api-rollup && npm run build:api-documentation",
"build:api-documentation": "node ./api-markdown-documenter.js",
"build:api-rollup": "rimraf ./_api-extractor-temp && node ./rollup-api-json.js ../_api-extractor-temp/doc-models/ ./_api-extractor-temp/",
"build:md-magic": "concurrently npm:build:md-magic:code npm:build:md-magic:website",
"build:md-magic:code": "node markdown-magic-code.js",
"build:md-magic:website": "node markdown-magic-website.js",
"build:repo-docs": "npm run build:md-magic:code",
"build:website": "npm run build:api-rollup && npm run build:md-magic:website && npm run build:api-documentation && npm run hugo",
"ci:build": "npm run download && npm run build",
"clean": "rimraf public content/docs/apis _api-extractor-temp",
"download": "npm run download:api && npm run build:api-documentation",
"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": "hugo server"
},
"dependencies": {
"@fluid-tools/api-markdown-documenter": "^0.5.0",
"@microsoft/api-extractor-model": "^7.23.0",
"@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",
"chalk": "^2.4.2",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"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",
"serve": "^13.0.2",
"shelljs": "^0.8.5"
}
}