-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 3.2 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
96
97
98
99
100
101
102
{
"name": "@badisi/auth-js",
"description": "Authentication and authorization support for web based desktop and mobile applications.",
"homepage": "https://github.com/Badisi/auth-js",
"license": "GPL-3.0-only",
"author": "Badisi",
"repository": {
"type": "git",
"url": "git+https://github.com/Badisi/auth-js.git"
},
"keywords": [
"authentication",
"authorization",
"oidc",
"openidconnect",
"openid",
"security",
"identity",
"oauth2",
"oauth",
"auth",
"authn",
"web",
"mobile"
],
"private": true,
"scripts": {
"ncu": "npx npm-check-updates -i --format=group --packageFile='{,projects/**/}package.json'",
"migrate": "nx migrate latest",
"lint": "nx run-many --target=lint --projects=auth-js,ngx-auth,demo-app-web",
"test": "nx run-many --target=test --projects=auth-js,ngx-auth",
"publish": "multi-semantic-release --ignore-private-packages --yes",
"publish-dry-run": "GITHUB_TOKEN=XXX NPM_TOKEN=XXX npm run publish -- --dry-run --no-ci",
"postinstall": "node ./scripts/patch-semantic-release-npm.js",
"prepare": "husky || true"
},
"workspaces": [
"projects/auth-js",
"projects/demo-app/capacitor",
"projects/demo-app/web",
"projects/demo-e2e",
"projects/demo-idp",
"projects/ngx-auth",
"projects/site"
],
"dependencies": {
"@angular/common": "18.2.1",
"@angular/compiler": "18.2.1",
"@angular/core": "18.2.1",
"@angular/forms": "18.2.1",
"@angular/platform-browser": "18.2.1",
"@angular/platform-browser-dynamic": "18.2.1",
"@angular/router": "18.2.1",
"rxjs": "~7.8.1",
"tslib": "^2.7.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.1",
"@angular-devkit/schematics": "^18.2.1",
"@angular/cli": "~18.2.1",
"@angular/compiler-cli": "18.2.1",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@hug/eslint-config": "^20.2.1",
"@nx/angular": "19.6.2",
"@nx/eslint": "19.6.2",
"@nx/eslint-plugin": "19.6.2",
"@nx/jest": "19.6.2",
"@nx/web": "19.6.2",
"@nx/webpack": "19.6.2",
"@nx/workspace": "19.6.2",
"@types/jest": "29.5.12",
"@types/node": "22.5.0",
"cpy-cli": "^5.0.0",
"esbuild": "^0.23.1",
"husky": "^9.1.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.2.2",
"lint-staged": "^15.2.9",
"multi-semantic-release": "^3.0.2",
"ng-packagr": "18.2.1",
"nx": "19.6.2",
"postcss": "^8.4.41",
"postcss-import": "~16.1.0",
"postcss-preset-env": "~10.0.2",
"postcss-url": "~10.1.3",
"ts-jest": "^29.2.5",
"typescript": "5.5.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,json,ts,html}": [
"eslint --fix"
]
}
}