forked from pazznetwork/ngx-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.76 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
{
"name": "ngx-chat-xmpp-shell",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng build @pazznetwork/ngx-chat && ng serve",
"clean": "rimraf out-tsc && rimraf dist && rimraf coverage && rimraf documentation",
"compile": "tsc -p projects/pazznetwork/ngx-chat/tsconfig.lib.json --noEmit --noImplicitAny",
"build-lib": "npm run clean && ng build @pazznetwork/ngx-chat --prod && node fix-build-result.js",
"build": "npm run build-lib && ng build --prod --stats-json",
"test": "ng test @pazznetwork/ngx-chat --watch",
"test:once": "ng test @pazznetwork/ngx-chat --code-coverage --watch=false",
"lint": "ng lint @pazznetwork/ngx-chat",
"e2e": "ng e2e",
"bundle-report": "webpack-bundle-analyzer dist/ngx-chat-xmpp-shell/stats-es5.json",
"documentation": "compodoc --tsconfig projects/pazznetwork/ngx-chat/tsconfig.lib.json",
"documentation:serve": "compodoc --tsconfig projects/pazznetwork/ngx-chat/tsconfig.lib.json --serve --watch",
"changelog": "conventional-changelog --infile CHANGELOG.md --same-file --preset angular --pkg projects/pazznetwork/ngx-chat/package.json --release-count 0"
},
"dependencies": {
"@angular/animations": "~10.0.8",
"@angular/cdk": "^10.1.2",
"@angular/common": "~10.0.8",
"@angular/compiler": "~10.0.8",
"@angular/core": "~10.0.8",
"@angular/forms": "~10.0.8",
"@angular/platform-browser": "~10.0.8",
"@angular/platform-browser-dynamic": "~10.0.8",
"@angular/router": "~10.0.8",
"@types/ltx": "^2.6.3",
"@xmpp/client": "^0.9.2",
"rxjs": "^6.5.4",
"tslib": "^2.0.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.5",
"@angular-devkit/build-ng-packagr": "~0.1000.5",
"@angular/cli": "~10.0.5",
"@angular/compiler-cli": "~10.0.8",
"@angular/language-service": "~10.0.8",
"@commitlint/cli": "^8.0.0",
"@commitlint/config-angular": "^8.0.0",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "^3.5.10",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"concat-files": "^0.1.1",
"conventional-changelog-cli": "^2.0.31",
"coveralls": "^3.0.2",
"glob": "^7.1.2",
"husky": "^1.1.3",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~3.3.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^10.0.0",
"protractor": "~7.0.0",
"ts-node": "^7.0.1",
"tslint": "~6.1.0",
"typescript": "^3.9.7",
"webpack-bundle-analyzer": "^3.6.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}