-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
118 lines (118 loc) · 3.73 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@okta/okta-angular-root",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"ng": "ng",
"build": "ng build okta-angular",
"banners": "node util/maintain-banners.js",
"build:package-info": "node ./util/write-package-info.js . lib/src/okta/packageInfo.ts",
"clean": "rimraf dist/ && rimraf test-reports/",
"lint": "eslint --ext .js,.ts .",
"lint:report": "eslint -f checkstyle -o ./test-reports/lint/eslint-checkstyle-result.xml .",
"prebuild": "yarn build:package-info",
"prepare": "yarn build",
"start": "yarn --cwd test/e2e/harness/ start",
"test": "yarn lint && yarn test:e2e && yarn test:unit",
"pretest:e2e": "yarn test:apps:prepare && yarn test:apps:build",
"test:e2e": "yarn workspace @okta/test.e2e start",
"test:unit": "ng test okta-angular",
"compodoc": "compodoc lib -p tsconfig.json",
"compodoc:serve": "compodoc -s",
"test:apps:prepare": "sh ./scripts/prepare-test-apps.sh",
"test:apps:build": "sh ./scripts/build-test-apps.sh",
"test:apps:clear": "sh ./scripts/clear-test-apps.sh",
"lerna": "lerna"
},
"engines": {
"node": ">=14.14",
"yarn": "^1.7.0"
},
"repository": "https://github.com/okta/okta-angular",
"homepage": "https://github.com/okta/okta-angular",
"keywords": [
"okta",
"oidc",
"OpenID Connect",
"authentication",
"auth",
"oauth2"
],
"license": "Apache-2.0",
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "~12.2.0",
"@angular/animations": "~12.2.0",
"@angular/cli": "~12.2.0",
"@angular/common": "~12.2.0",
"@angular/compiler": "~12.2.0",
"@angular/compiler-cli": "~12.2.0",
"@angular/core": "~12.2.0",
"@angular/platform-browser": "~12.2.0",
"@angular/platform-browser-dynamic": "~12.2.0",
"@angular/platform-server": "~12.2.0",
"@angular/router": "~12.2.0",
"@babel/helper-get-function-arity": "^7.16.7",
"@compodoc/compodoc": "1.1.19",
"@okta/okta-auth-js": "^7.1.0",
"@types/jest": "^26.0.14",
"@types/json-schema": "^7.0.3",
"@types/node": "10.14.0",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"axios": "^1.7.9",
"chalk": "2.4.2",
"core-js": "3.39.0",
"dotenv": "^16.4.7",
"eslint": "^8.23.1",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-angular": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-node": "^11.1.0",
"globby": "^11.0.1",
"husky": "^7.0.4",
"jest": "^28.0.0",
"jest-junit": "^13.2.0",
"jest-preset-angular": "^12.2.3",
"lerna": "^5.5.2",
"ng-packagr": "^12.2.0",
"prettier": "^2.1.2",
"reflect-metadata": "0.1.13",
"rimraf": "^3.0.2",
"rxjs": "6.6.3",
"shelljs": "0.8.5",
"source-map-loader": "^1.1.3",
"ts-loader": "^9.0.2",
"tsickle": "^0.46.3",
"tslint": "^6.1.3",
"typescript": "~4.7.3",
"uglify-js": "3.13.5",
"webpack": "^5.62.1",
"yalc": "^1.0.0-pre.53",
"zone.js": "~0.11.4"
},
"resolutions": {
"**/chokidar/glob-parent": "^6.0.2",
"**/@angular-devkit/build-angular/minimatch": "^3.1.2",
"**/@angular-devkit/build-angular/babel-loader": "^8.3.0",
"**/@angular-devkit/build-angular/loader-utils": "^2.0.4",
"**/@angular-devkit/build-angular/webpack-dev-server": "^4.15.2",
"**/@angular-devkit/build-angular/core-js": "^3.39.0",
"**/nx/minimatch": "^3.1.2",
"**/postcss-url/minimatch": "^3.1.2",
"**/globule/minimatch": "^3.1.2"
},
"sideEffects": false,
"workspaces": {
"packages": [
"lib",
"test/e2e"
],
"nohoist": [
"test/apps/*",
"**/@wdio/**"
]
}
}