-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.36 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
{
"name": "aqua-viewer",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --port 443",
"http": "http-server -p 8080 -c-1 dist/aqua-viewer",
"build": "ng build",
"build prod": "ng build --configuration=production",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"deploy": "ng deploy",
"postinstall": "ngcc",
"commit": "npx cz",
"supportedBrowsers": "(echo export default && browserslist-useragent-regexp --allowHigherVersions) > src/app/supportedBrowsers.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/cdk": "^16.2.0",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.0",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@angular/service-worker": "^16.2.0",
"@ng-bootstrap/ng-bootstrap": "15.1.1",
"@ng-icons/bootstrap-icons": "^25.0.0",
"@ng-icons/core": "^25.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"@types/bootstrap": "^5.2.10",
"aegis-web-sdk": "^1.37.1",
"bootstrap": "^5.2.3",
"cropperjs": "^1.5.13",
"crypto-js": "^4.2.0",
"dompurify": "^3.1.6",
"marked": "^12.0.0",
"ngx-indexed-db": "^16.0.0",
"ngx-pagination": "^6.0.3",
"rxjs": "~7.8.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
"@angular/cli": "^16.2.0",
"@angular/compiler-cli": "^16.2.0",
"@types/dompurify": "^3.0.5",
"@types/jasmine": "~4.3.1",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^20.1.0",
"browserslist-useragent-regexp": "^4.1.3",
"codelyzer": "^6.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"http-server": "^14.1.1",
"jasmine-core": "~4.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"protractor": "~7.0.0",
"ts-node": "~10.9.1",
"tslint": "~6.1.0",
"typescript": ">=4.9.3 <5.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}