-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.94 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
{
"name": "sample-angular-oauth2-oidc-with-auth-guards",
"version": "1.0.0",
"homepage": "https://github.com/jeroenheijmans/sample-angular-oauth2-oidc-with-auth-guards",
"scripts": {
"ng": "ng",
"start": "ng serve --ssl=false --open",
"start-with-ssl": "ng serve --open",
"build": "ng build",
"lint": "ng lint",
"test": "ng test",
"test:ci": "ng test --watch=false",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"angular-oauth2-oidc": "^15.0.1",
"rxjs": "^7.5.7",
"tslib": "^2.4.1",
"zone.js": "^0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular-eslint/builder": "15.0.0-alpha.0",
"@angular-eslint/eslint-plugin": "15.0.0-alpha.0",
"@angular-eslint/eslint-plugin-template": "15.0.0-alpha.0",
"@angular-eslint/schematics": "15.0.0-alpha.0",
"@angular-eslint/template-parser": "15.0.0-alpha.0",
"@angular/cli": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@types/jasmine": "^4.3.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"codelyzer": "^6.0.2",
"eslint": "^8.28.0",
"jasmine-core": "^4.3.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "^7.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.8.4"
},
"volta": {
"node": "16.17.1",
"yarn": "1.22.19"
}
}