-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
101 lines (101 loc) · 3.85 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
{
"name": "material-addons-project",
"version": "1.0.0",
"scripts": {
"build:all": " npm run build:mat-add && npm run build:demo",
"build:mat-add": "ng build material-addons && npm run copy:themes",
"build:demo": "ng build --configuration production --base-href https://porscheinformatik.github.io/material-addons/",
"copy:themes": "ncp projects/material-addons/src/themes dist/material-addons/themes",
"patch:mat-add": "cd projects/material-addons && npm version patch",
"publish": "npm run patch:mat-add && npm run publish:mat-add && npm run publish:demo",
"publish:mat-add": "npm run build:mat-add && npm publish ./dist/material-addons --access public",
"publish:demo-ci": "npm install --no-optional && npm install && npm run build:demo && npx angular-cli-ghpages --no-silent --dir=dist/material-addons-project --name=\"Github Actions\" [email protected]",
"publish:demo": "npm run build:demo && npx angular-cli-ghpages --no-silent --dir=dist/material-addons-project",
"eslint": "npm run eslint:mat-add && npm run eslint:demo",
"eslint:demo": "eslint src/**/*.ts",
"eslint:fix": "npm run eslint:mat-add:fix && npm run eslint:demo:fix",
"eslint:mat-add": "eslint projects/material-addons/src/**/*.ts",
"eslint:demo:fix": "eslint src/**/*.ts --fix",
"eslint:mat-add:fix": "eslint projects/material-addons/src/**/*.ts --fix",
"prettier": "prettier -c .",
"prettier:fix": "prettier --write .",
"build-and-serve": "npm install && npm run build:mat-add && npm install --no-optional && npm install && ng serve --open",
"serve": "ng serve --open",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run --component --browser chrome"
},
"private": true,
"dependencies": {
"@angular/animations": "18.0.2",
"@angular/cdk": "18.0.2",
"@angular/common": "18.0.2",
"@angular/compiler": "18.0.2",
"@angular/core": "18.0.2",
"@angular/forms": "18.0.2",
"@angular/material": "18.0.2",
"@angular/platform-browser": "18.0.2",
"@angular/platform-browser-dynamic": "18.0.2",
"@angular/router": "18.0.2",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"highlight.js": "^11.9.0",
"luxon": "^3.4.2",
"material-icons": "^1.13.9",
"ngx-highlightjs": "^10.0.0",
"roboto-fontface": "^0.10.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.3",
"@angular/cli": "18.0.3",
"@angular/compiler-cli": "18.0.2",
"@types/jest": "^29.5.12",
"@types/luxon": "^3.4.2",
"@types/node": "^20.4.4",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"cypress": "^13.6.5",
"cypress-real-events": "^1.12.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-preset-angular": "^14.0.0",
"ncp": "^2.0.0",
"ng-packagr": "^18.0.0",
"ngx-translate-testing": "^7.0.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.2",
"ts-node": "~10.9.1",
"typescript": "~5.4.5",
"uuid": "^10.0.0"
},
"optionalDependencies": {
"@porscheinformatik/material-addons": "file:dist/material-addons"
},
"lint-staged": {
"*.{ts,scss,css,html,json}": [
"prettier --write",
"git add"
],
"*.ts": [
"eslint projects/material-addons/src/**/*.ts --fix",
"eslint src/**/*.ts --fix",
"git add"
]
},
"overrides": {
"jest-preset-angular": {
"@angular-devkit/build-angular": "18.0.3",
"@angular/compiler-cli": "18.0.2",
"@angular/core": "18.0.2",
"@angular/platform-browser-dynamic": "18.0.2"
}
}
}