-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
84 lines (84 loc) · 2.85 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
{
"name": "login-demo",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start_with_proxy": "ng serve --proxy-config proxy.conf.json",
"build_prod": "ng build -c configuration_prod",
"build_dev": "ng build -c configuration_dev",
"build_stage": "ng build -c configuration_stage",
"build_island": "ng build -c configuration_island",
"build_remote": "ng build -c configuration_remote",
"test": "ng test",
"test:ci": "ng test --no-watch --no-progress --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"e2e": "ng e2e",
"server:app": "node server.js",
"server:api": "node api-server.js",
"dev": "npm-run-all --parallel start server:api",
"prod": "npm-run-all --parallel server:app server:api",
"postbuild": "npm run copy:server",
"copy:server": "copyfiles server.js auth_config.json dist/login-demo"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.1",
"@angular/cdk": "^17.0.4",
"@angular/common": "^17.0.1",
"@angular/compiler": "^17.0.1",
"@angular/core": "^17.0.1",
"@angular/forms": "^17.0.1",
"@angular/localize": "^17.0.1",
"@angular/material": "^17.0.4",
"@angular/platform-browser": "^17.0.1",
"@angular/platform-browser-dynamic": "^17.0.1",
"@angular/router": "^17.0.1",
"@auth0/auth0-angular": "^2.2.0",
"@fortawesome/angular-fontawesome": "^0.14.0",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@popperjs/core": "^2.11.6",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-oauth2-jwt-bearer": "^1.6.0",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"ngx-highlightjs": "^8.0.0",
"npm-run-all": "^4.1.5",
"rxjs": "^6.6.7",
"tslib": "^2.6.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "17.1.1",
"@angular-eslint/eslint-plugin": "17.1.1",
"@angular-eslint/eslint-plugin-template": "17.1.1",
"@angular-eslint/schematics": "17.1.1",
"@angular-eslint/template-parser": "17.1.1",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.1",
"@angular/language-service": "^17.0.1",
"@types/jasmine": "^3.10.6",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"copyfiles": "^2.4.1",
"eslint": "^8.55.0",
"jasmine-core": "~3.99.1",
"jasmine-spec-reporter": "~5.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "~7.0.0",
"typescript": "~5.2.2"
},
"prettier": {
"singleQuote": true
}
}