forked from porscheinformatik/clarity-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 4.38 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": "clr-addons",
"version": "18.0.4",
"private": true,
"scripts": {
"build:ui:css": "sass --source-map --precision=8 ./src/clr-addons/themes/phs/phs-theme.scss ./dist/clr-addons/styles/clr-addons-phs.css",
"build:ui:prefix": "postcss ./dist/clr-addons/styles/clr-addons-phs.css -o ./dist/clr-addons/styles/clr-addons-phs.css",
"build:ui:optimize": "csso -i ./dist/clr-addons/styles/clr-addons-phs.css -o ./dist/clr-addons/styles/clr-addons-phs.min.css -s file",
"build:ui": "npm-run-all build:ui:css build:ui:prefix build:ui:optimize",
"build:angular:package": "npm-run-all build:angular:package:cpypackage build:angular:package:cpyreadme build:angular:package:version",
"build:angular:package:cpypackage": "cp-cli npm/clr-addons/package.json src/clr-addons/package.json",
"build:angular:package:cpyreadme": "cp-cli npm/clr-addons/README.md src/clr-addons/README.md",
"build:angular:package:version": "node ./replace-versions.js",
"build:angular:ngpackagr": "ng build clr-addons --configuration production",
"build:watch:angular:ngpackagr:dev": "ng build --watch clr-addons --configuration dev",
"build:angular": "npm-run-all build:angular:package build:angular:ngpackagr",
"build": "npm-run-all clean build:ui build:angular",
"clean": "shx rm -rf dist",
"start": "npm-run-all build:ui:css build:ui:prefix serve:dev",
"start:port": "npm-run-all build:ui:css build:ui:prefix serve:dev:port",
"serve:dev": "ng serve dev --ssl",
"serve:dev:port": "ng serve dev --port 4300 --host=0.0.0.0 --ssl",
"test:format": "prettier --check \"src/**/*.{js,json,md,ts,scss}\"",
"format:global:fix": "prettier -w \"src/**/*.{js,json,md,ts,scss}\"",
"format:fix": "pretty-quick --staged",
"lint": "npm-run-all test:lint:ts",
"test:lint:ts": "eslint \"src/clr-addons/**/*.ts\" \"src/dev/**/*.ts\"",
"lint:fix": "eslint --fix \"src/clr-addons/**/*.ts\" \"src/dev/**/*.ts\"",
"test": "ng test clr-addons --watch false",
"test:watch": "ng test clr-addons --watch",
"test:ci": "npm-run-all test:format lint test build",
"license:fix": "node scripts/update-license",
"publish": "npm publish ./dist/clr-addons --access public",
"prepare": "husky install",
"ng": "ng"
},
"dependencies": {
"@angular/animations": "18.2.5",
"@angular/cdk": "18.2.5",
"@angular/common": "18.2.5",
"@angular/compiler": "18.2.5",
"@angular/core": "18.2.5",
"@angular/forms": "18.2.5",
"@angular/platform-browser": "18.2.5",
"@angular/platform-browser-dynamic": "18.2.5",
"@angular/router": "18.2.5",
"@cds/core": "6.13.0",
"@clr/angular": "17.3.0",
"@clr/icons": "13.0.2",
"@clr/ui": "17.3.0",
"@webcomponents/custom-elements": "1.6.0",
"@webcomponents/webcomponentsjs": "2.8.0",
"core-js": "3.39.0",
"rxjs": "7.8.1",
"tslib": "2.8.0",
"zone.js": "0.14.10"
},
"devDependencies": {
"@alasdair/karma-scss-preprocessor": "5.0.0-3",
"@angular-devkit/build-angular": "18.2.5",
"@angular-devkit/core": "18.2.5",
"@angular-eslint/builder": "18.4.0",
"@angular/cli": "18.2.5",
"@angular/compiler-cli": "18.2.5",
"@types/jasmine": "5.1.4",
"@types/jasmine-matchers": "0.2.35",
"@types/jasminewd2": "2.0.13",
"@types/node": "22.8.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"autoprefixer": "10.4.20",
"cp-cli": "2.0.0",
"csso-cli": "4.0.2",
"del-cli": "6.0.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jasmine": "4.2.2",
"husky": "9.1.6",
"jasmine-core": "5.4.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-htmlfile-reporter": "0.3.8",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"karma-jasmine-matchers": "5.0.0",
"karma-mocha-reporter": "2.2.5",
"karma-notify-reporter": "1.3.0",
"lite-server": "2.6.1",
"ng-packagr": "18.2.1",
"npm-run-all2": "7.0.1",
"postcss": "8.4.47",
"postcss-cli": "11.0.0",
"prettier": "2.8.8",
"pretty-quick": "3.3.1",
"replace": "1.2.2",
"sass": "1.80.5",
"shx": "0.3.4",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
}
}