-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (93 loc) · 2.92 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
{
"name": "dcc-portal-frontend-ssr",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build:ssr": "ng build --configuration production",
"build-run:ssr": "ng build --configuration production && ng run dcc-portal-frontend-ssr:serve:production",
"serve:ssr": "node dist/dcc-portal-frontend-ssr/server/main.js"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^18.0.6",
"@angular/animations": "^18.0.5",
"@angular/cdk": "^18.0.5",
"@angular/common": "^18.0.5",
"@angular/compiler": "^18.0.5",
"@angular/core": "^18.0.5",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "^18.0.5",
"@angular/localize": "^18.0.5",
"@angular/material": "^18.0.5",
"@angular/platform-browser": "^18.0.5",
"@angular/platform-browser-dynamic": "^18.0.5",
"@angular/platform-server": "^18.0.5",
"@angular/router": "^18.0.5",
"@angular/service-worker": "^18.0.5",
"@angular/ssr": "^18.0.6",
"@apollo/client": "^3.0.0",
"@auth0/angular-jwt": "^5.2.0",
"@ng-bootstrap/ng-bootstrap": "^17.0.0",
"@popperjs/core": "^2.11.5",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "^5.1.2",
"@types/jasminewd2": "^2.0.13",
"angular-popper": "^2.0.1",
"apollo-angular": "^7.0.2",
"bootstrap": "^4.4.1",
"browserslist": "^4.8.3",
"caniuse-lite": "^1.0.30001019",
"chart.js": "^4.4.0",
"chartjs-plugin-datalabels": "^2.2.0",
"cookieconsent": "^3.1.1",
"core-js": "^3.34.0",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"graphql": "^16",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"material-design-icons": "^3.0.1",
"ng2-charts": "^5.0.3",
"ng2-file-upload": "^5.0.0",
"ngx-bootstrap": "^5.2.0",
"ngx-cookieconsent": "^6.0.0",
"ngx-pagination": "^3.3.1",
"ngx-smart-modal": "^14.0.3",
"ngx-spinner": "^16.0.2",
"path": "^0.12.7",
"rxjs": "^7.8.0",
"swagger-ui-dist": "^3.51.1",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular/cli": "^18.0.6",
"@angular/compiler-cli": "^18.0.5",
"@angular/language-service": "^18.0.5",
"@types/express": "^4.17.17",
"@types/node": "^18.18.0",
"browser-sync": "^3.0.0",
"codelyzer": "^6.0.0",
"coveralls": "^3.0.9",
"cypress": "^13.6.1",
"igv": "^2.15.13",
"karma": "^6.3.20",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"lite-server": "^2.5.4",
"protractor": "~7.0.0",
"ts-node": "~5.0.1",
"tslint": "~6.1.0",
"typescript": "~5.4.5"
}
}