-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.48 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.48 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@microsoft/beachball-monorepo",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/microsoft/beachball"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"workspaces": [
"packages/*",
"scripts"
],
"scripts": {
"beachball": "node ./packages/beachball/lib/cli.js",
"build": "yarn 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 install",
"lage": "cross-env NODE_OPTIONS=\"--experimental-abortcontroller\" lage",
"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": "yarn lage lint",
"lint:deps": "yarn lage depcheck",
"lint:versions": "yarn syncpack:check",
"lint:marketplace": "node scripts/lint-marketplace.js",
"postinstall": "patch-package",
"release": "yarn beachball publish -y",
"release:docs": "echo \"Run this from the docs folder instead\" && exit 1",
"syncpack:check": "syncpack list-mismatches",
"syncpack:update": "syncpack fix-mismatches",
"test": "yarn lage test",
"update-snapshots": "yarn lage update-snapshots"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@types/node": "^14.0.0",
"@types/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@typescript-eslint/utils": "^5.0.0",
"cross-env": "^7.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-etc": "^2.0.3",
"husky": "^8.0.0",
"jest": "^29.0.0",
"lage": "2.4.0",
"lint-staged": "^12.0.0",
"patch-package": "^8.0.1",
"prettier": "~2.8.4",
"syncpack": "^9.0.0",
"ts-jest": "29.2.6",
"typescript": "~5.2.0"
},
"resolutions": {
"@types/node": "^14.0.0",
"**/depcheck/minimatch": "^7.4.9",
"**/lodash": "4.18.1",
"**/body-parser/qs": "^6.14.2",
"**/express/qs": "^6.14.2",
"**/@cypress/request/qs": "^6.14.2",
"**/syncpack/minimatch": "^6.2.3",
"**/syncpack/semver": "^7.7.4",
"**/verdaccio/handlebars": "^4.7.9",
"**/verdaccio/js-yaml": "^4.1.0",
"**/verdaccio/minimatch": "^7.4.9",
"**/verdaccio/validator": "^13.15.22",
"**/@verdaccio/config/js-yaml": "^4.1.0",
"**/@verdaccio/config/minimatch": "^7.4.9",
"**/@verdaccio/core/ajv": "^8.18.0",
"**/@verdaccio/url/validator": "^13.15.22",
"**/@verdaccio/utils/minimatch": "^7.4.9"
},
"rationale": {
"devDependencies": {
"lage@2.4.0": "Pin to newest version that supports node 14",
"ts-jest@29.2.6": "29.3.0 introduces type-fest v4 which requires node 16+"
},
"resolutions": {
"**/lodash": "Unpin due to security issue",
"**/*/qs": "Unpin due to security issue",
"**/semver": "Unpin due to security issues",
"**/verdaccio/*": "Unpin due to security issues",
"**/@verdaccio/*/*": "Unpin due to security issues",
"**/minimatch": "Unpin minimatch due to security issues"
}
}
}