-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
153 lines (153 loc) · 5.39 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
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
149
150
151
152
153
{
"name": "speek.video",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"nx": "nx",
"build": "nx run gateway:build --prod --with-deps",
"server": "node dist/apps/gateway/main.js",
"deploy": "nx run webapp:build:production",
"start": "nx run-many --target serve --projects gateway,webapp --maxParallel 2 --parallel",
"gateway": "nx serve gateway",
"webapp": "nx serve webapp",
"webapp:ssl": "ng serve webapp --configuration=staging --publicHost=0.0.0.0 --ssl --sslCert=server/private/localhost.cert.pem --sslKey=server/private/localhost.key.pem",
"webapp:stage": "nx run webapp:build:staging && ./tools/scripts/certs.sh",
"webapp:open": "cd dist/apps/webapp && http-server -S -C cert.pem -p 80 -o",
"test": "ng test",
"lint": "nx workspace-lint && ng lint",
"e2e": "ng e2e",
"gen-key": "openssl genrsa -out server/private/localhost.key.pem 2048",
"gen-cert": "openssl req -config server/localhost.conf -new -x509 -sha256 -nodes -key server/private/localhost.key.pem -days 365 -out server/private/localhost.cert.pem",
"gen-csr": "openssl req -config server/localhost.conf -new -sha256 -nodes -key server/private/localhost.key.pem -days 365 -out server/private/localhost.req.pem",
"print-cert": "openssl x509 -in server/private/localhost.cert.pem -text -noout",
"print-csr": "openssl req -in server/private/localhost.req.pem -text -noout",
"affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs",
"affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test",
"affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
"update": "nx migrate latest",
"workspace-generator": "nx workspace-generator",
"dep-graph": "nx dep-graph",
"help": "nx help",
"prerelease": "nx affected:build",
"version": "nx run workspace:version --base-branch=main --sync-versions --push --dry-run",
"semantic-release": "semantic-release",
"lint-staged": "lint-staged || (npm run pop-stash >> /dev/null && exit 1)",
"stash-unstaged": "git stash save -k 'pre-linting-stash' >> /dev/null",
"pop-stash": "git stash && git stash pop stash@{1} && git read-tree stash && git stash drop",
"commit": "cz"
},
"private": true,
"dependencies": {
"@angular/animations": "13.3.6",
"@angular/cdk": "13.3.6",
"@angular/common": "13.3.6",
"@angular/compiler": "13.3.6",
"@angular/core": "13.3.6",
"@angular/forms": "13.3.6",
"@angular/material": "13.3.6",
"@angular/platform-browser": "13.3.6",
"@angular/platform-browser-dynamic": "13.3.6",
"@angular/router": "13.3.6",
"@angular/service-worker": "13.3.6",
"@nestjs/common": "8.4.5",
"@nestjs/core": "^8.0.0",
"@nestjs/mapped-types": "^1.0.1",
"@nestjs/platform-express": "^8.0.0",
"@nestjs/platform-socket.io": "8.4.5",
"@nestjs/websockets": "8.4.5",
"@nrwl/angular": "14.1.9",
"commitizen": "^4.2.4",
"jest-ts-auto-mock": "^2.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"socket.io-client": "^4.5.1",
"ts-auto-mock": "^3.1.0",
"tslib": "^2.0.0",
"webrtc-adapter": "^7.7.0",
"zone.js": "0.11.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "13.3.5",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "13.3.5",
"@angular/compiler-cli": "13.3.6",
"@angular/language-service": "13.3.6",
"@jscutlery/semver": "^1.3.1",
"@nestjs/schematics": "8.0.11",
"@nestjs/testing": "^8.0.0",
"@nrwl/cli": "14.1.9",
"@nrwl/eslint-plugin-nx": "14.1.9",
"@nrwl/jest": "14.1.9",
"@nrwl/js": "14.1.9",
"@nrwl/linter": "14.1.9",
"@nrwl/nest": "14.1.9",
"@nrwl/node": "14.1.9",
"@nrwl/nx-cloud": "14.0.5",
"@nrwl/workspace": "14.1.9",
"@types/dom-mediacapture-record": "^1.0.7",
"@types/jest": "27.4.1",
"@types/node": "14.14.33",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"cz-customizable": "^6.3.0",
"dotenv": "10.0.0",
"eslint": "8.12.0",
"eslint-config-prettier": "8.1.0",
"husky": "^4.3.8",
"jest": "27.5.1",
"jest-preset-angular": "^11.1.2",
"lint-staged": "^10.5.4",
"ng-packagr": "13.3.1",
"nx": "14.1.9",
"postcss": "^8.3.9",
"postcss-import": "14.1.0",
"postcss-preset-env": "7.5.0",
"postcss-url": "10.1.3",
"prettier": "2.6.2",
"schema-dts": "^0.8.2",
"ts-jest": "27.1.4",
"ts-node": "~9.1.1",
"typescript": "4.6"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,ts,json,css,scss,md}": [
"prettier --write"
]
},
"pre-commit": [
"stash-unstaged",
"lint-staged",
"pop-stash"
],
"engines": {
"node": "16.14.0",
"npm": "8.3.1"
}
}