-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.86 KB
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
{
"name": "ngx-oauth",
"version": "7.0.1",
"author": "Fl0r14n <florian.chis@gmail.com>",
"homepage": "https://github.com/Fl0r14n/ngx-oauth",
"description": "A fully OAuth2.1 compliant angular library",
"license": "MIT",
"keywords": [
"angular",
"Angular 21",
"oauth",
"oauth2",
"oidc",
"pkce",
"authorization",
"openid",
"openid connect"
],
"repository": {
"type": "git",
"url": "https://github.com/Fl0r14n/ngx-oauth"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build:lib": "ng build ngx-oauth",
"build:app": "ng build ngx-oauth-sample",
"watch": "ng build --watch --configuration development",
"test": "jest",
"lint": "ng lint",
"format": "prettier --write \"projects/**/*.{ts,html,scss,css,json}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.9",
"@angular/common": "^21.2.9",
"@angular/compiler": "^21.2.9",
"@angular/core": "^21.2.9",
"@angular/forms": "^21.2.9",
"@angular/platform-browser": "^21.2.9",
"@angular/platform-browser-dynamic": "^21.2.9",
"@angular/platform-server": "^21.2.9",
"@angular/router": "^21.2.9",
"@angular/ssr": "^21.2.7",
"bootstrap": "^5.3.3",
"express": "^4.19.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@angular/build": "^21.2.7",
"@angular/cli": "^21.2.7",
"@angular/compiler-cli": "^21.2.9",
"@eslint/js": "^10.0.1",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^20.12.5",
"angular-eslint": "21.3.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-preset-angular": "^16.1.4",
"ng-packagr": "^21.2.3",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"typescript-eslint": "8.56.1",
"zone.js": "^0.16.1"
}
}