-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
package.json
111 lines (111 loc) · 3.51 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
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
104
105
106
107
108
109
110
111
{
"name": "lerna-monorepo",
"private": true,
"description": "lerna dog-fooding lerna",
"workspaces": [
"packages/*",
"packages/legacy-structure/commands/create"
],
"volta": {
"node": "20.18.0",
"yarn": "1.22.19",
"npm": "10.8.0"
},
"packageManager": "npm@10.8.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tools/scripts/build.sh",
"e2e-build-package-publish": "ts-node -P tools/scripts/tsconfig.e2e.json tools/scripts/e2e-build-package-publish",
"e2e-start-local-registry": "node tools/scripts/e2e-start-local-registry.js",
"format:check": "prettier --check '**/*.{js,ts,tsx,css,yml,json}'",
"format:write": "prettier --write '**/*.{js,ts,tsx,css,yml,json}'",
"integration": "nx integration integration --maxWorkers=2",
"lerna-release": "nx build lerna --no-dte && ts-node -P tools/scripts/tsconfig.scripts.json tools/scripts/lerna-release",
"lint": "nx run-many -t lint",
"local-registry": "tools/scripts/local-registry.sh",
"test": "nx run-many -t test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lerna/lerna.git"
},
"license": "MIT",
"homepage": "https://lerna.js.org",
"devDependencies": {
"@nx/esbuild": "20.0.6",
"@nx/eslint": "20.0.6",
"@nx/eslint-plugin": "20.0.6",
"@nx/jest": "20.0.6",
"@nx/js": "20.0.6",
"@nx/plugin": "20.0.6",
"@nx/web": "20.0.6",
"@swc-node/register": "1.9.1",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@types/byte-size": "^8.1.2",
"@types/clone-deep": "^4.0.4",
"@types/cmd-shim": "^5.0.2",
"@types/columnify": "^1.5.4",
"@types/conventional-recommended-bump": "^6.1.0",
"@types/dedent": "^0.7.2",
"@types/envinfo": "^7.8.4",
"@types/fs-extra": "^11.0.4",
"@types/git-url-parse": "^9.0.3",
"@types/glob-parent": "^5.1.3",
"@types/inquirer": "^8.2.5",
"@types/is-ci": "^3.0.4",
"@types/jest": "29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/libnpmpublish": "^9.0.0",
"@types/lodash": "^4.17.5",
"@types/node": "18.19.10",
"@types/node-fetch": "^2.6.11",
"@types/normalize-path": "^3.0.2",
"@types/npm-package-arg": "^6.1.4",
"@types/npm-packlist": "^7.0.3",
"@types/npm-registry-fetch": "^8.0.7",
"@types/npmcli__arborist": "^5.6.6",
"@types/npmlog": "^7.0.0",
"@types/pify": "^5.0.4",
"@types/semver": "^7.5.8",
"@types/signal-exit": "^3.0.4",
"@types/ssri": "^7.1.5",
"@types/strong-log-transformer": "^1.0.2",
"@types/tar": "^6.1.13",
"@types/temp-dir": "^1.0.0",
"@types/tmp": "^0.2.6",
"@types/uuid": "^9.0.8",
"@types/write-file-atomic": "^4.0.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"env-cmd": "^10.1.0",
"esbuild": "0.21.5",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-node": "^11.1.0",
"jest": "29.7.0",
"jest-diff": "29.7.0",
"js-yaml": "^4.1.0",
"jsonc-eslint-parser": "^2.4.0",
"lerna": "file:packages/lerna",
"lodash": "^4.17.21",
"normalize-newline": "^3.0.0",
"normalize-path": "^3.0.0",
"nx": "20.0.6",
"prettier": "^2.2.1",
"tacks": "1.2.6",
"signal-exit": "3.0.7",
"string-width": "^4.2.3",
"tmp": "^0.2.3",
"touch": "^3.1.1",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"verdaccio": "^6.0.1"
}
}