-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.24 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 4.24 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "angular-server-side-configuration",
"version": "21.0.3",
"description": "Configure an angular application on the server",
"scripts": {
"build:lib": "node ./scripts/build-lib.mts",
"build:cli": "node ./scripts/build-cli.mts",
"build:ngssc": "ng run ngssc-app:ngsscbuild:production",
"build:demo": "ng build ngssc-app",
"build:demo-i18n": "ng build ngssc-app -c i18n",
"build": "run-s build:*",
"format": "prettier --write **/*.{js,ts,css,scss,json,md,html}",
"pretest:lib": "yarn -s build:lib",
"test:lib": "tsx test/jasmine.js",
"test:app": "ng test ngssc-app --configuration=ci",
"test:cli": "cd cli && go test",
"test:cli:coverage": "cd cli && go test -coverprofile=coverage.out && go tool cover -html=coverage.out",
"test:container": "docker build --tag ngssc-test --file test/Dockerfile.test . && docker run --rm -it -p 8080:8080 ngssc-test",
"test": "run-s test:lib test:app test:cli",
"serve:demo": "cross-env VARIABLE=demo ng serve ngssc-builders-app",
"prepack:lib": "yarn -s build:lib",
"pack:lib": "cd dist/angular-server-side-configuration && yarn pack",
"lint": "ng lint",
"release": "commit-and-tag-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kyubisation/angular-server-side-configuration.git"
},
"keywords": [
"angular",
"configuration",
"server",
"server-side",
"docker",
"openshift",
"kubernetes"
],
"author": "kyubisation",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kyubisation/angular-server-side-configuration/issues"
},
"homepage": "https://github.com/kyubisation/angular-server-side-configuration#readme",
"private": true,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {
"@angular/animations": "^21.0.3",
"@angular/common": "^21.0.3",
"@angular/compiler": "^21.0.3",
"@angular/core": "^21.0.3",
"@angular/forms": "^21.0.3",
"@angular/platform-browser": "^21.0.3",
"@angular/platform-browser-dynamic": "^21.0.3",
"@angular/platform-server": "^21.0.3",
"@angular/router": "^21.0.3",
"@angular/ssr": "^21.0.2",
"rxjs": "7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.2100.2",
"@angular-devkit/core": "^21.0.2",
"@angular-devkit/schematics": "^21.0.2",
"@angular-eslint/builder": "21.0.1",
"@angular-eslint/eslint-plugin": "21.0.1",
"@angular-eslint/eslint-plugin-template": "21.0.1",
"@angular-eslint/schematics": "21.0.1",
"@angular-eslint/template-parser": "21.0.1",
"@angular/build": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler-cli": "^21.0.3",
"@angular/localize": "21.0.3",
"@types/jasmine": "~5.1.13",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@typescript-eslint/types": "^8.48.1",
"@typescript-eslint/utils": "^8.33.1",
"commit-and-tag-version": "^12.6.1",
"cross-env": "^10.1.0",
"eslint": "^9.28.0",
"eslint-plugin-import-x": "^4.16.1",
"glob": "^10.4.5",
"jasmine": "~5.4.0",
"jasmine-core": "~5.4.0",
"karma": "~6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^21.0.0",
"npm-run-all": "^4.1.5",
"prettier": "3.7.4",
"tsx": "^4.21.0",
"typescript": "~5.9.3"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf",
"printWidth": 100
},
"commit-and-tag-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "projects/angular-server-side-configuration/package.json",
"updater": "scripts/standard-version-updater.js"
},
{
"filename": "projects/angular-server-side-configuration/schematics/migration.json",
"updater": "scripts/standard-version-updater.js"
},
{
"filename": "README.md",
"updater": "scripts/standard-version-updater.js"
}
]
}
}