-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
45 lines (45 loc) · 1.4 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
{
"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",
"start-with-ssl": "ng serve",
"build": "ng build",
"lint": "ng lint",
"test": "npx playwright test",
"e2e": "npx playwright test"
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.8",
"@angular/common": "18.2.8",
"@angular/compiler": "18.2.8",
"@angular/core": "18.2.8",
"@angular/forms": "18.2.8",
"@angular/platform-browser": "18.2.8",
"@angular/platform-browser-dynamic": "18.2.8",
"@angular/router": "18.2.8",
"angular-oauth2-oidc": "17.0.2",
"rxjs": "7.8.1",
"tslib": "2.7.0",
"zone.js": "0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.8",
"@angular-eslint/builder": "18.3.1",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/schematics": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "18.2.8",
"@angular/compiler-cli": "18.2.8",
"@playwright/test": "1.48.0",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"codelyzer": "6.0.2",
"typescript": "5.5.2"
}
}