-
-
Notifications
You must be signed in to change notification settings - Fork 210
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.05 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.05 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
{
"name": "angular-builders",
"description": "A consolidation of community builders for Angular build facade",
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders"
},
"private": true,
"workspaces": {
"packages": [
"packages/*",
"examples/*",
"examples/custom-esbuild/*",
"examples/custom-webpack/*",
"examples/jest/*"
]
},
"author": "Evgeny Barabanov",
"license": "MIT",
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"scripts": {
"build:packages": "rm -rf .turbo/runs && turbo build --filter='@angular-builders/*...[origin/master]' --summarize",
"build:packages:all": "rm -rf .turbo/runs && turbo build --filter='@angular-builders/*' --summarize",
"test:local": "node scripts/run-local-tests.js",
"lerna": "lerna",
"graduate": "lerna publish --conventional-commits --conventional-graduate",
"prepare": "husky",
"update:package": "cd $INIT_CWD && yarn node ${PROJECT_CWD}/scripts/update-package.js",
"update:example": "cd $INIT_CWD && yarn node ${PROJECT_CWD}/scripts/update-example.js",
"update:packages": "yarn workspaces foreach --include '@angular-builders/*' run update:package",
"update:examples": "yarn workspaces foreach --exclude '@angular-builders/*' run update:example"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@lerna-lite/cli": "^4.10.5",
"@lerna-lite/publish": "^4.10.5",
"@types/lodash": "^4.14.118",
"@types/node": "^24.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"lodash": "^4.17.15",
"prettier": "^3.0.0",
"ts-jest": "29.4.9",
"turbo": "^2.4.0",
"vitest": "4.1.4"
},
"lint-staged": {
"*.{js,ts,html,md}": [
"prettier --write"
]
},
"prettier": {
"semi": true,
"endOfLine": "lf",
"tabWidth": 2,
"printWidth": 100,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "avoid",
"singleQuote": true
},
"packageManager": "yarn@3.8.7"
}