forked from GetStream/stream-chat-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 5.71 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 5.71 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "stream-chat-angular",
"version": "0.0.0",
"scripts": {
"prepare": "husky install",
"postinstall": "npm run config:dev",
"ng": "ng",
"prestart": "npm run config:dev && ng build",
"start": "ng serve --disable-host-check",
"prestart:dev": "npm run config:dev",
"start:dev": "rm -rf dist & npm run watch & (wait-on dist && ng serve)",
"build": "ng build",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "rm -rf dist & npm run watch & (wait-on dist && ng run stream-chat-angular:test)",
"test:ci": "ng run stream-chat-angular:test --browsers ChromeHeadlessCustom --watch false",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"pree2e": "npm run config:dev && ng build",
"e2e": "ng e2e",
"pree2e:ci": "npm run config:prod && ng build --configuration production",
"e2e:ci": "ng run sample-app:cypress-run --configuration production",
"config:dev": "ANGULAR_ENV=development ts-node set-env.ts",
"config:prod": "ANGULAR_ENV=production ts-node set-env.ts",
"start-docs": "npm run generate-docs && npx stream-chat-docusaurus -s",
"build:sample-app": "ng build --stats-json --project sample-app",
"build:dist": "npm run build:prod && npm run build:sample-app",
"preanalyze:sample-app": "npm run build:sample-app",
"analyze:sample-app": "webpack-bundle-analyzer dist/sample-app/stats.json",
"generate-docs": "npm run typedoc:services && npm run typedoc:components && npm run copy-docs",
"typedoc:services": "typedoc --cleanOutputDir true --excludeConstructors true --hideBreadcrumbs true --hideInPageTOC true --excludePrivate true --out temp-service-docs --exclude '!**/*service.ts' --excludeNotDocumented --tsconfig projects/stream-chat-angular/tsconfig.lib.json projects/stream-chat-angular/src/public-api.ts",
"typedoc:components": "typedoc --cleanOutputDir true --excludeConstructors true --sort source-order --hideBreadcrumbs true --hideInPageTOC true --excludePrivate true --excludeNotDocumented --out temp-component-docs --exclude '!**/*component.ts' --tsconfig projects/stream-chat-angular/tsconfig.lib.json projects/stream-chat-angular/src/public-api.ts",
"copy-docs": "ts-node copy-generated-service-docs.ts & (ts-node remove-generated-component-docs-content && ts-node copy-generated-component-docs.ts)"
},
"lint-staged": {
"**/*": [
"ts-node remove-generated-component-docs-content",
"prettier --write --ignore-unknown"
]
},
"private": true,
"release": {
"branches": [
"master"
],
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "./dist/stream-chat-angular",
"npmPublish": true
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./set-version.sh ${nextRelease.version}"
}
],
[
"@semantic-release/github"
],
[
"@semantic-release/git",
{
"assets": [
"./projects/stream-chat-angular/package.json",
"./projects/stream-chat-angular/src/assets/version.ts"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"dependencies": {
"@angular/animations": "~12.2.0",
"@angular/common": "~12.2.0",
"@angular/compiler": "~12.2.0",
"@angular/core": "~12.2.0",
"@angular/forms": "~12.2.0",
"@angular/platform-browser": "~12.2.0",
"@angular/platform-browser-dynamic": "~12.2.0",
"@angular/router": "~12.2.0",
"@ctrl/ngx-emoji-mart": "^6.2.0",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@stream-io/stream-chat-css": "2.6.0",
"@stream-io/transliterate": "^1.5.2",
"angular-mentions": "^1.4.0",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"emoji-regex": "^10.0.0",
"pretty-bytes": "^5.6.0",
"rxjs": "~6.6.0",
"stream-chat": "^5.6.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.0",
"uuidv4": "^6.2.12",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.5",
"@angular-eslint/builder": "12.4.1",
"@angular-eslint/eslint-plugin": "12.4.1",
"@angular-eslint/eslint-plugin-template": "12.4.1",
"@angular-eslint/schematics": "12.4.1",
"@angular-eslint/template-parser": "12.4.1",
"@angular/cli": "~12.2.4",
"@angular/compiler-cli": "~12.2.0",
"@cypress/schematic": "^1.5.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "~3.8.0",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"cypress": "8.4.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-jsdoc": "^37.7.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-unused-imports": "^1.1.4",
"husky": "^7.0.2",
"jasmine-core": "~3.8.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "^11.1.2",
"ng-packagr": "^12.1.1",
"prettier": "^2.4.0",
"prettier-eslint": "^13.0.0",
"puppeteer": "^10.2.0",
"semantic-release": "^18.0.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typedoc-plugin-reference-excluder": "^1.0.0",
"typescript": "~4.3.5",
"wait-on": "^6.0.0",
"webpack-bundle-analyzer": "^4.5.0"
}
}