-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.82 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.82 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
{
"name": "ppwcode",
"version": "0.0.0",
"repository": {
"url": "https://github.com/peopleware/angular-sdk"
},
"scripts": {
"start": "ng serve",
"start:remote": "ng serve --host 0.0.0.0",
"lint:prettier": "cross-env prettier --check \"**/*.{ts,js,md,html,scss}\"",
"format:prettier": "cross-env prettier --write \"**/*.{ts,js,md,html,scss}\"",
"lint:lint": "ng lint",
"format:lint": "ng lint --fix",
"ci:test-libs": "node ./scripts/ci/test-libs.js",
"ci:lint": "npm run lint:prettier && npm run lint:lint",
"ci:build": "ng build ppwcode --base-href /angular-sdk/ --deploy-url /angular-sdk/",
"ci:build-libs": "./scripts/ci/build-libs.sh",
"ci:check-production-vulnerabilities": "npx better-npm-audit audit --production",
"retire": "retire --outputformat cyclonedx"
},
"private": true,
"dependencies": {
"@angular/animations": "21.2.5",
"@angular/cdk": "21.2.3",
"@angular/common": "21.2.5",
"@angular/compiler": "21.2.5",
"@angular/core": "21.2.5",
"@angular/forms": "21.2.5",
"@angular/material": "21.2.3",
"@angular/platform-browser": "21.2.5",
"@angular/platform-browser-dynamic": "21.2.5",
"@angular/router": "21.2.5",
"@fortawesome/fontawesome-free": "7.1.0",
"@ngx-translate/core": "17.0.0",
"@ngx-translate/http-loader": "17.0.0",
"@types/luxon": "3.7.1",
"file-saver-es": "2.0.5",
"luxon": "3.7.1",
"rxjs": "7.8.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/schematics": "21.2.3",
"@angular-eslint/builder": "21.3.1",
"@angular-eslint/eslint-plugin": "21.3.1",
"@angular-eslint/eslint-plugin-template": "21.3.1",
"@angular-eslint/schematics": "21.3.1",
"@angular-eslint/template-parser": "21.3.1",
"@angular/build": "21.2.3",
"@angular/cli": "21.2.3",
"@angular/compiler-cli": "21.2.5",
"@schematics/angular": "21.2.3",
"@types/file-saver-es": "2.0.1",
"@types/node": "22.13.14",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"concurrently": "8.2.1",
"copyfiles": "2.4.1",
"cross-env": "7.0.3",
"eslint": "9.33.0",
"eslint-plugin-depend": "1.2.0",
"eslint-plugin-no-secrets": "2.2.1",
"jasmine-core": "4.6.0",
"jsdom": "28.0.0",
"ng-packagr": "21.0.0",
"prettier": "3.1.1",
"prettier-config-standard": "7.0.0",
"retire": "5.2.5",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"overrides": {
"deep-equal": {
"regexp.prototype.flags": "npm:regexp.prototype.flags@1.5.0"
}
}
}