-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.53 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.53 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
{
"name": "frontend",
"version": "2.0.5",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:dev": "ng serve --host 0.0.0.0 --port 8888 --disable-host-check",
"start:devs": "ng serve --port 8080 --host polyglot --ssl true --ssl-key ~/.polyglot/ssl/polyglot_private.key --ssl-cert ~/.polyglot/ssl/polyglot.crt --disable-host-check",
"start:local": "ng serve --port 8080 --ssl true --ssl-key ~/.polyglot/ssl/polyglot_private.key --ssl-cert ~/.polyglot/ssl/polyglot.crt --disable-host-check",
"build:prod": "ng build --prod --output-path=dist/frontend/prod; aws s3 sync --profile pgc-prod --delete --include=* dist/frontend/prod s3://polyglot-prod.isy.io/ --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"build:test": "ng build --configuration=test --output-path=dist/frontend/test; aws s3 sync --profile pgc-test --delete --include=* dist/frontend/test s3://pgtest.isy.io/ --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers",
"update:run": "ncu -u; npm install",
"patchandrelease": "npm version patch --force",
"postversion": "git push && git push --tags",
"update:check": "ncu",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "8.2.7",
"@angular/common": "8.2.7",
"@angular/compiler": "8.2.7",
"@angular/core": "11.0.5",
"@angular/forms": "8.2.7",
"@angular/http": "7.2.15",
"@angular/platform-browser": "8.2.7",
"@angular/platform-browser-dynamic": "8.2.7",
"@angular/router": "8.2.7",
"@ng-bootstrap/ng-bootstrap": "5.1.1",
"buffer": "^5.4.3",
"core-js": "^3.2.1",
"mqtt": "4.3.7",
"ngx-spinner": "8.0.3",
"ngx-toastr": "10.2.0",
"pako": "1.0.10",
"rxjs": "6.5.3",
"setimmediate": "^1.0.5",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.2.4",
"@angular/cli": "~15.1.2",
"@angular/compiler-cli": "15.1.1",
"@angular/language-service": "8.2.7",
"@types/jasmine": "~3.4.0",
"@types/jasminewd2": "~2.0.6",
"@types/mqtt": "2.5.0",
"@types/node": "^12.7.5",
"codelyzer": "~5.1.1",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "~7.0.0",
"ts-node": "~8.4.1",
"tslint": "~5.20.0",
"typescript": "3.5.3"
}
}