forked from microsoft/lage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "@lage-run/lage-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/lage"
},
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
},
"scripts": {
"build": "lage transpile types build bundle",
"watch": "lage transpile isolatedTypes --no-cache --verbose --unstable-watch",
"change": "beachball change",
"checkchange": "beachball check",
"release": "beachball publish -y --tag latest",
"test": "lage test --verbose",
"lint": "lage lint",
"decks:build": "npm exec --package=@marp-team/marp-cli -- marp -I decks --pdf -o decks/dist",
"docs": "yarn --cwd docs start",
"docs:install": "yarn --cwd docs",
"docs:build": "yarn --cwd docs build",
"docs:test": "yarn --cwd docs build",
"gh-pages": "gh-pages",
"format": "prettier --config .prettierrc packages/**/*.ts **/*.json --write --ignore-path .gitignore",
"format:check": "prettier --config .prettierrc packages/**/*.ts **/*.json --check --ignore-path .gitignore",
"prepare": "husky install",
"postinstall": "patch-package"
},
"devDependencies": {
"@types/jest": "29.5.1",
"@types/node": "16.18.3",
"beachball": "2.31.12",
"fast-glob": "3.2.12",
"gh-pages": "4.0.0",
"husky": "8.0.3",
"lage-npm": "npm:[email protected]",
"lint-staged": "13.2.0",
"patch-package": "6.5.1",
"prettier": "2.8.6",
"syncpack": "8.5.14",
"ts-node": "10.9.1"
},
"resolutions": {
"workspace-tools": "^0.35.0",
"typescript": "^5.0.3"
},
"lint-staged": {
"*.ts": "prettier --config .prettierrc --write --ignore-path .gitignore",
"*.json": "prettier --config .prettierrc --write --ignore-path .gitignore"
}
}