-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
124 lines (124 loc) · 4.31 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
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "angular-server-side-configuration",
"version": "19.0.1",
"description": "Configure an angular application on the server",
"scripts": {
"build:lib": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./scripts/build-lib.mts",
"build:cli": "node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only ./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": "node 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,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/platform-server": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/ssr": "^19.0.1",
"rxjs": "7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/architect": "^0.1900.1",
"@angular-devkit/build-angular": "^19.0.1",
"@angular-devkit/core": "^19.0.1",
"@angular-devkit/schematics": "^19.0.1",
"@angular-eslint/builder": "19.0.0-alpha.1",
"@angular-eslint/eslint-plugin": "19.0.0-alpha.1",
"@angular-eslint/eslint-plugin-template": "19.0.0-alpha.1",
"@angular-eslint/schematics": "19.0.0-alpha.1",
"@angular-eslint/template-parser": "19.0.0-alpha.1",
"@angular/build": "^19.0.1",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@angular/localize": "19.0.0",
"@types/jasmine": "~5.1.4",
"@types/node": "^22.9.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@typescript-eslint/types": "^8.15.0",
"@typescript-eslint/utils": "^8.15.0",
"commit-and-tag-version": "^12.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.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": "^19.0.1",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "~5.6.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"
}
]
}
}