-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "@uzenith360/ngx-jwt-auth",
"version": "0.0.0",
"description": "An Angular JWT authentication library with authentication service, route guard, interceptor and login modal to get your Angular app authentication setup in a breeze 🌬️",
"scripts": {
"clean": "rm -rf ./dist",
"ng": "ng",
"start": "ng serve",
"compilecss": "npx tailwindcss -i ./projects/ngx-jwt-auth/src/styles.css -o ./projects/ngx-jwt-auth/assets/styles.css",
"build": "npm run clean && npm run compilecss && ng build ngx-jwt-auth",
"watch": "ng build --watch --configuration development",
"prepack": "npm run build",
"test": "ng test ngx-jwt-auth",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/uzenith360/ngx-jwt-auth.git"
},
"keywords": [
"typescript",
"angular"
],
"author": "@uzenith360",
"license": "ISC",
"bugs": {
"url": "https://github.com/uzenith360/ngx-jwt-auth/issues"
},
"homepage": "https://github.com/uzenith360/ngx-jwt-auth#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public",
"tag": "latest"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@angular/animations": "^18.2.10",
"@angular/cdk": "^18.2.11",
"@angular/common": "^18.2.10",
"@angular/compiler": "^18.2.10",
"@angular/core": "^18.2.10",
"@angular/forms": "^18.2.10",
"@angular/material": "^18.2.11",
"@angular/platform-browser": "^18.2.10",
"@angular/platform-browser-dynamic": "^18.2.10",
"@angular/router": "^18.2.10",
"@auth0/angular-jwt": "^5.0.2",
"@uzenith360/jwt-utils": "^1.1.4",
"@uzenith360/in-memory-cache": "1.1.5",
"rxjs": "~7.5.0",
"subsink": "^1.0.2",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular/cli": "^18.2.11",
"@angular/compiler-cli": "^18.2.10",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"autoprefixer": "^10.4.13",
"husky": "^8.0.2",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^18.2.1",
"postcss": "^8.4.20",
"tailwindcss": "^3.2.4",
"typescript": "~5.5.4"
}
}