-
Notifications
You must be signed in to change notification settings - Fork 100
/
package.json
34 lines (34 loc) · 1.21 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
{
"name": "root",
"private": true,
"engines": {
"node": ">=16 <21",
"npm": ">=6 <=11"
},
"scripts": {
"audit": "npm audit & npm run exec -- npm audit",
"audit:fix": "npm audit fix & npm run exec -- npm audit fix",
"build": "lerna run build",
"clean-install-packages": "npm run exec -- npm ci & npm ci",
"dist-tags": "npm run exec -- npm dist-tag ls",
"install-packages": "npm run exec -- npm install & npm install",
"exec": "lerna exec --concurrency 1 --no-bail --no-sort --stream",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"postinstall": "lerna bootstrap",
"prettier": "lerna run prettier --parallel",
"publish:next": "lerna publish --dist-tag next",
"test": "lerna run test",
"update-latest-dist-tags": "npm run exec for /f \"usebackq\" %a in (`npm view . name`) do @for /f \"usebackq\" %b in (`npm view . dist-tags.next`) do @npm dist-tag add %a@%b",
"update-packages": "npm run exec -- npm update --dev"
},
"devDependencies": {
"@microsoft/eslint-plugin-sdl": "^0.2.2",
"eslint": "^8.57.0",
"lerna": "^5.1.6",
"typescript-eslint": "^8.8.1"
},
"overrides": {
"git-url-parse": "^13.0.0"
}
}