-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
139 lines (139 loc) · 3.99 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@okta/okta-react",
"version": "6.10.0",
"description": "React support for Okta",
"private": true,
"scripts": {
"banners": "node util/maintain-banners.js",
"build": "node build.js",
"clean": "rm -rf dist && rm -rf test-reports",
"lint": "eslint .",
"lint:report": "eslint -f checkstyle -o ./test-reports/lint/eslint-checkstyle-result.xml .",
"prepare": "yarn build",
"start": "yarn workspace @okta/test.app.test-harness-app start",
"test": "yarn lint && yarn test:unit && yarn test:e2e",
"test:e2e": "yarn workspace @okta/test.e2e test",
"test:unit": "jest",
"bundle": "rollup -c",
"dev": "yarn bundle --watch",
"generate": "yarn --cwd generator install && yarn --cwd generator generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta-react.git"
},
"keywords": [
"oauth2"
],
"main": "dist/bundles/okta-react.cjs.js",
"module": "dist/bundles/okta-react.esm.js",
"types": "dist/bundles/types",
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/okta/okta-react/issues"
},
"homepage": "https://github.com/okta/okta-react#readme",
"engines": {
"node": ">=10.3",
"yarn": "^1.7.0"
},
"resolutions": {
"**/glob-parent": "^6.0.2",
"//": "[email protected] has a vuln, see OKTA-473553",
"**/set-value": "^4.1.0",
"ejs": "^3.1.7",
"axios": "^0.27.2",
"**/glob": "^9.3.5"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"compare-versions": "^4.1.2"
},
"peerDependencies": {
"@okta/okta-auth-js": "^5.3.1 || ^6.0.0 || ^7.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-router-dom": ">=5.1.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@okta/okta-auth-js": "^7.7.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-replace": "^2.3.4",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^29.5.4",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"axios": "^0.27.2",
"babel-jest": "^27.5.1",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"enzyme": "^3.5.1",
"enzyme-adapter-react-16": "^1.4.0",
"eslint": "^7.10.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-react-hooks": "^2.5.0",
"globby": "^11.0.1",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"jest-junit": "^13.0.0",
"polished": "^1.7.0",
"prop-types": "^15.5.10",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-router-dom": "5.2.0",
"rimraf": "^2.6.2",
"rollup": "^2.33.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"shelljs": "^0.8.5",
"ts-jest": "^29.1.1",
"typescript": "^4.0.5"
},
"jest-junit": {
"outputDirectory": "./test-reports/unit/",
"outputName": "junit-result.xml"
},
"workspaces": {
"packages": [
"./",
"env",
"samples/**/*",
"samples/routing/**/*",
"test/apps/*",
"test/e2e"
],
"nohoist": [
"**/@wdio/**",
"**/react",
"**/react/**",
"**/react-dom",
"**/react-dom/**",
"**/react-router-dom",
"**/react-router-dom/**",
"**/@types/react/**",
"**/@types/react-dom",
"**/@types/react-dom/**",
"**/@types/react-router-dom"
]
}
}