forked from microsoft/lage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "lage",
"version": "1.6.0",
"description": "A monorepo task runner",
"repository": {
"url": "https://github.com/microsoft/lage"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"lage": "bin/lage.js"
},
"scripts": {
"build": "tsc",
"change": "beachball change",
"checkchange": "beachball check",
"decks:build": "marp -I decks --pdf -o docs/.vuepress/dist/decks",
"docs": "vuepress dev docs --host localhost",
"docs:build": "vuepress build docs",
"gen-typedoc": "ts-node --transpile-only scripts/gen-typedoc.ts",
"gh-pages": "gh-pages",
"release": "beachball publish -y --tag unstable",
"release:docs": "yarn gen-typedoc && yarn docs:build && yarn decks:build && yarn gh-pages -d docs/.vuepress/dist --dotfiles",
"start": "tsc -w --preserveWatchOutput",
"test": "jest"
},
"resolutions": {
"mermaid": "8.6.4",
"watchpack": "1.6.1"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.0",
"abort-controller": "^3.0.0",
"backfill": "^6.1.13",
"backfill-cache": "^5.3.0",
"backfill-config": "^6.2.0",
"backfill-logger": "^5.1.3",
"bullmq": "^1.50.2",
"chalk": "^4.0.0",
"cosmiconfig": "^6.0.0",
"execa": "^4.0.3",
"fast-glob": "^3.2.2",
"git-url-parse": "^11.1.2",
"ioredis": "^4.28.0",
"npmlog": "^4.1.2",
"p-graph": "^1.1.1",
"p-limit": "^3.1.0",
"p-profiler": "^0.2.1",
"workspace-tools": "^0.18.2",
"yargs-parser": "^18.1.3"
},
"devDependencies": {
"@marp-team/marp-cli": "^0.20.0",
"@types/chalk": "^2.2.0",
"@types/cosmiconfig": "^6.0.0",
"@types/execa": "^2.0.0",
"@types/git-url-parse": "^9.0.0",
"@types/ioredis": "^4.27.7",
"@types/jest": "^27.0.1",
"@types/node": "^12.0.0",
"@types/npmlog": "^4.1.2",
"@types/p-queue": "^3.2.1",
"@types/yargs-parser": "^15.0.0",
"beachball": "^2.16.0",
"gh-pages": "^2.2.0",
"jest": "^27.2.0",
"renovate": "^23.42.2",
"ts-jest": "^27.0.5",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^4.4.4",
"vuepress": "^1.5.3",
"vuepress-plugin-mermaidjs": "^1.6.0"
}
}