-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (80 loc) · 3.24 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
{
"name": "solace-message-client",
"scripts": {
"before-push": "run-s build lint test:headless",
"build": "run-s **:*:build",
"lint": "run-p **:*:lint",
"test": "run-s **:*:test",
"test:headless": "cross-env HEADLESS=true run-s **:*:test",
"start": "run-s solace-message-client-testing-app:serve",
"changelog": "run-p changelog:*",
"changelog:fullest": "conventional-changelog -k projects/solace-message-client/package.json -p angular -i CHANGELOG.md -s && markdown-include docs/site/changelog/changelog.template.json",
"changelog:latest": "conventional-changelog -k projects/solace-message-client/package.json -p angular -o CHANGELOG_LATEST.md",
"solace-message-client:lint": "ng lint solace-message-client",
"solace-message-client:test": "ng test solace-message-client",
"solace-message-client:build": "ng build --configuration production solace-message-client",
"solace-message-client:typedoc": "typedoc --plugin typedoc-plugin-extras --tsconfig projects/solace-message-client/tsconfig.lib.prod.typedoc.json --favicon resources/branding/favicon.ico",
"solace-message-client-testing-app:serve": "ng serve solace-message-client-testing-app",
"solace-message-client-testing-app:lint": "ng lint solace-message-client-testing-app",
"solace-message-client-testing-app:build": "ng build --configuration=production solace-message-client-testing-app"
},
"private": true,
"dependencies": {
"@angular/animations": "19.0.1",
"@angular/cdk": "19.0.1",
"@angular/common": "19.0.1",
"@angular/compiler": "19.0.1",
"@angular/core": "19.0.1",
"@angular/forms": "19.0.1",
"@angular/material": "19.0.1",
"@angular/platform-browser": "19.0.1",
"@angular/platform-browser-dynamic": "19.0.1",
"@angular/router": "19.0.1",
"@scion/components": "19.0.0",
"@scion/toolkit": "1.6.0",
"pako": "2.1.0",
"rxjs": "7.8.1",
"solclientjs": "10.17.1",
"tslib": "2.8.1",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.2",
"@angular-eslint/builder": "19.0.0",
"@angular-eslint/eslint-plugin": "19.0.0",
"@angular-eslint/eslint-plugin-template": "19.0.0",
"@angular-eslint/schematics": "19.0.0",
"@angular-eslint/template-parser": "19.0.0",
"@angular/cli": "19.0.2",
"@angular/compiler-cli": "19.0.1",
"@types/events": "3.0.3",
"@types/jasmine": "5.1.5",
"@types/node": "22.10.1",
"@types/pako": "2.0.3",
"@typescript-eslint/eslint-plugin": "7.11.0",
"@typescript-eslint/parser": "7.11.0",
"conventional-changelog-cli": "5.0.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-rxjs": "5.0.3",
"jasmine-core": "5.5.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"long": "5.2.3",
"markdown-include": "0.4.3",
"ng-packagr": "19.0.1",
"npm-run-all2": "7.0.1",
"puppeteer": "23.9.0",
"typedoc": "0.26.11",
"typedoc-plugin-extras": "3.1.0",
"typescript": "5.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/solacecommunity/angular-solace-message-client.git"
}
}