-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.87 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
{
"private": true,
"name": "@microsoft/backfill-repo",
"version": "2.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/backfill"
},
"scripts": {
"build": "yarn lage build",
"change": "beachball change",
"checkchange": "beachball check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"postinstall": "yarn update-project-references",
"lage": "cross-env NODE_OPTIONS=\"--experimental-abortcontroller\" lage",
"lint": "eslint --fix . --ext .ts",
"prepare": "husky install",
"release": "beachball publish",
"syncpack:check": "syncpack list-mismatches",
"syncpack:fix": "syncpack fix-mismatches",
"test": "yarn lage test",
"update-project-references": "node tools/update-project-references.js",
"watch": "yarn lage --verbose watch"
},
"workspaces": [
"packages/*"
],
"resolutions": {
"**/cache-base/union-value/set-value": "^2.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"beachball": "^2.31.8",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"execa": "^5.0.0",
"husky": "^7.0.4",
"lage": "^2.7.16",
"lint-staged": "^12.5.0",
"lodash.merge": "^4.6.2",
"prettier": "~3.1.0",
"prettier-package-json": "^2.8.0",
"resolve-from": "^5.0.0",
"syncpack": "8.5.14",
"typescript": "~4.3.0"
},
"engines": {
"node": ">=14"
},
"lint-staged": {
"**/package.json": [
"prettier-package-json --write",
"prettier --write"
],
"**/*.{js,json,md,yaml}": [
"prettier --write"
],
"**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"syncpack": {
"peer": false,
"workspace": false
}
}