forked from microsoft/lage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "lage",
"version": "0.29.0",
"description": "A monorepo task runner",
"repository": {
"url": "https://github.com/microsoft/lage"
},
"license": "MIT",
"main": "lib/index.js",
"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",
"release:docs": "yarn gen-typedoc && yarn docs:build && yarn decks:build && yarn gh-pages -d docs/.vuepress/dist --dotfiles",
"start": "tsc -w --preserveWatchOutput",
"test": "ts-node --project tests/tsconfig.json node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"resolutions": {
"mermaid": "8.6.4",
"watchpack": "1.6.1"
},
"dependencies": {
"@microsoft/task-scheduler": "^2.7.0",
"abort-controller": "^3.0.0",
"backfill": "^6.0.1",
"backfill-config": "^6.0.0",
"backfill-logger": "^5.0.0",
"chalk": "^4.0.0",
"cosmiconfig": "^6.0.0",
"execa": "^4.0.3",
"fast-glob": "^3.2.2",
"git-url-parse": "^11.1.2",
"npmlog": "^4.1.2",
"p-profiler": "^0.2.1",
"workspace-tools": "^0.10.3",
"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/jasmine": "^3.5.10",
"@types/node": "^13.13.2",
"@types/npmlog": "^4.1.2",
"@types/p-queue": "^3.2.1",
"@types/yargs-parser": "^15.0.0",
"beachball": "^1.31.4",
"gh-pages": "^2.2.0",
"jasmine": "^3.5.0",
"renovate": "^23.42.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typedoc-plugin-markdown": "^2.3.1",
"typescript": "^3.8.3",
"vuepress": "^1.5.3",
"vuepress-plugin-mermaidjs": "^1.6.0"
}
}