This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.49 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
{
"name": "@descope/angular-sdk",
"version": "0.5.10",
"peerDependencies": {
"@angular/common": ">=16.0.0",
"@angular/core": ">=16.0.0"
},
"license": "MIT",
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": ">= 8.1.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"prepare": "husky install",
"format-lint": "pretty-quick --staged --ignore-path .gitignore && lint-staged",
"prebuild:ci": "node scripts/setversion/setversion.js",
"build:ci": "npm run build:lib",
"build:lib": "cp package.json ./projects/angular-sdk && ng build angular-sdk",
"build:app": "ng build demo-app",
"watch": "ng build --watch --configuration development",
"test": "jest --config jest.config.js",
"lint": "ng lint",
"format": "prettier . -w --ignore-path .gitignore",
"format-check": "prettier . --check --ignore-path .gitignore",
"prepublishOnly": "npm run build:ci",
"leaks": "bash ./scripts/gitleaks/gitleaks.sh"
},
"lint-staged": {
"+(src|test|examples)/**/*.{js,ts,html}": [
"npm run lint"
]
},
"dependencies": {
"@descope/access-key-management-widget": "0.1.113",
"@descope/audit-management-widget": "0.1.76",
"@descope/role-management-widget": "0.1.111",
"@descope/user-management-widget": "0.4.114",
"@descope/user-profile-widget": "0.0.91",
"@descope/web-component": "3.20.2",
"tslib": "^2.3.0"
},
"optionalDependencies": {
"@descope/web-js-sdk": ">=1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.6",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/animations": "^16.2.9",
"@angular/cli": "^16.2.6",
"@angular/common": "^16.2.9",
"@angular/compiler": "^16.2.9",
"@angular/compiler-cli": "^16.2.9",
"@angular/core": "^16.2.9",
"@angular/forms": "^16.2.9",
"@angular/platform-browser": "^16.2.9",
"@angular/platform-browser-dynamic": "^16.2.9",
"@angular/router": "^16.2.9",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-preset-angular": "^13.1.2",
"lint-staged": "^15.2.0",
"ng-mocks": "^14.11.0",
"ng-packagr": "^16.2.3",
"prettier": "2.8.8",
"pretty-quick": "^3.1.3",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"typescript": "4.9.3",
"zone.js": "~0.13.0"
}
}