-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
package.json
File metadata and controls
90 lines (90 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@microsoft/just-repo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/just"
},
"scripts": {
"api": "yarn lage api",
"api:update": "yarn lage api:update",
"build": "yarn lage build",
"postbuild": "node ./scripts/copyReadme.js",
"change": "beachball change",
"checkchange": "beachball check",
"lage": "cross-env NODE_OPTIONS=\"--experimental-abortcontroller\" lage",
"format": "prettier --write .",
"format:check": "prettier --check .",
"release": "beachball publish",
"start": "yarn lage start",
"test": "yarn lage test",
"prelint": "syncpack list-mismatches",
"lint": "eslint packages --ext .ts,.js"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@microsoft/api-extractor": "7.52.9",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^14.18.37",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"beachball": "^2.31.11",
"cross-env": "^7.0.3",
"eslint": "^8.35.0",
"jest": "^29.5.0",
"lage": "2.4.0",
"mock-fs": "^5.2.0",
"prettier": "~3.8.0",
"syncpack": "^9.0.0",
"ts-jest": "~29.2.5",
"typescript": "~4.5.0"
},
"resolutions": {
"es5-ext": "0.10.53",
"kind-of": "^6.0.3",
"**/@types/glob/@types/minimatch": "^3.0.0",
"**/@types/minimatch/minimatch": "^3.0.0",
"**/@types/chokidar/chokidar": "^3.0.0",
"@types/node": "^14.0.0"
},
"rationale": {
"devDependencies": {
"@microsoft/api-extractor": "Pin to newest version that supports node 14"
},
"resolutions": {
"**/@types/glob/@types/minimatch": "pin to installed minimatch version, not *",
"**/@types/minimatch/minimatch": "pin to version matching other minimatch deps, not *",
"**/@types/chokidar/chokidar": "pin to version matching other chokidar deps, not *"
}
},
"beachball": {
"groupChanges": true,
"ignorePatterns": [
".*ignore",
"api-extractor.json",
"jest.config.js",
"**/__tests__/**",
"**/*.spec.ts",
"**/*.test.ts"
]
},
"syncpack": {
"dependencyTypes": [
"dev",
"prod"
]
},
"workspaces": {
"packages": [
"packages/*",
"scripts"
]
}
}