-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.39 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.39 KB
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
{
"name": "@microsoft/beachball-monorepo",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/beachball"
},
"license": "MIT",
"engines": {
"node": ">=22.18.0"
},
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"beachball": "node ./packages/beachball/lib/cli.js",
"build": "lage build",
"bump": "yarn beachball bump",
"change": "yarn beachball change",
"checkchange": "yarn beachball check",
"docs": "echo \"Run this from the docs folder instead\" && exit 1",
"docs:build": "echo \"Run this from the docs folder instead\" && exit 1",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"lint": "yarn lint:deps && yarn lint:versions && yarn lint:marketplace && yarn lint:code",
"lint:ci": "yarn lint:deps --verbose && yarn lint:versions && yarn lint:marketplace && yarn lint:code --verbose",
"lint:code": "lage lint",
"lint:deps": "lage depcheck",
"lint:versions": "yarn syncpack:check",
"lint:marketplace": "node scripts/lintMarketplace.js",
"release:canary": "yarn beachball canary -y",
"release:docs": "echo \"Run this from the docs folder instead\" && exit 1",
"syncpack:check": "syncpack lint",
"syncpack:update": "syncpack fix",
"test": "lage test",
"update-snapshots": "lage update-snapshots"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.0.0",
"@jest/globals": "^30.0.0",
"@types/node": "^22.0.0",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/utils": "^8.52.0",
"depcheck": "^1.4.7",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.0.0",
"jest": "^30.0.0",
"lage": "^2.15.0",
"lint-staged": "^16.0.0",
"prettier": "~3.8.3",
"syncpack": "^14.0.0",
"ts-jest": "^29.4.0",
"typescript": "~6.0.0",
"typescript-eslint": "^8.52.0"
},
"resolutions": {
"@types/node": "^22.0.0",
"lodash": "^4.18.1",
"express/qs@6.11.0": "^6.14.2",
"@cypress/request/qs@6.10.4": "^6.14.2",
"@verdaccio/core/ajv@8.17.1": "^8.18.0",
"@verdaccio/core/ajv@8.18.0": "^8.18.0"
},
"rationale": {
"resolutions": {
"lodash": "Unpin due to security issue",
"*/qs": "Unpin due to security issue"
}
}
}