forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.44 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
86
87
88
89
90
91
92
{
"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/index.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": "markdown-magic --files \"**/*.md\" !docs --workingDirectory ..",
"build:md-magic:website": "markdown-magic",
"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",
"ci:linkcheck": "start-server-and-test ci:start http://localhost:1313 linkcheck:full",
"ci:start": "http-server ./public --port 1313 --silent",
"clean": "rimraf --glob public content/docs/apis _api-extractor-temp",
"download": "npm run download:api && npm run build:api",
"download:api": "download --extract --out ../_api-extractor-temp/doc-models/ https://fluidframework.blob.core.windows.net/api-extractor-json/latest.tar.gz",
"format": "npm run prettier:fix",
"hugo": "hugo",
"linkcheck": "start-server-and-test start http://localhost:1313 linkcheck:full",
"linkcheck:fast": "linkcheck http://localhost:1313 --skip-file skipped-urls.txt",
"linkcheck:full": "npm run linkcheck:fast -- --external",
"lint": "markdownlint-cli2",
"lint:fix": "markdownlint-cli2-fix",
"prettier": "prettier --check . --cache --ignore-path ../.prettierignore",
"prettier:fix": "prettier --write . --cache --ignore-path ../.prettierignore",
"start": "hugo server"
},
"dependencies": {
"@fluid-tools/api-markdown-documenter": "^0.11.3",
"@fluid-tools/markdown-magic": "file:../tools/markdown-magic",
"@fluidframework/build-common": "^2.0.0",
"@rushstack/node-core-library": "^3.59.4",
"@tylerbu/dl-cli": "1.1.2-tylerbu-0",
"@vscode/codicons": "0.0.33",
"chalk": "^4.1.2",
"concurrently": "^8.2.1",
"cpy": "^8.1.2",
"deepdash": "^5.3.9",
"fs-extra": "^11.1.1",
"glob": "^7.2.3",
"http-server": "^14.1.1",
"hugo-extended": "^0.113.0",
"js-yaml": "^4.1.0",
"linkcheck-bin": "3.0.0-0",
"markdown-magic": "npm:@tylerbu/[email protected]",
"markdown-magic-package-json": "^2.0.2",
"markdown-magic-package-scripts": "^1.2.2",
"markdown-magic-template": "^1.0.1",
"markdownlint-cli2": "^0.8.1",
"markdownlint-rule-emphasis-style": "^1.0.1",
"markdownlint-rule-github-internal-links": "^0.1.0",
"markdownlint-rule-helpers": "^0.20.0",
"node-fetch": "^2.6.9",
"prettier": "~2.8.8",
"prettier-plugin-go-template": "^0.0.13",
"replace-in-file": "^7.0.1",
"rimraf": "^5.0.1",
"start-server-and-test": "^2.0.0"
},
"pnpm": {
"overrides": {
"qs": "^6.11.0"
},
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"typescript"
]
},
"updateConfig": {
"ignoreDependencies": [
"chalk",
"cpy",
"glob",
"node-fetch"
]
}
}
}